| | |
| | | * |
| | | * |
| | | * Copyright 2008-2010 Sun Microsystems, Inc. |
| | | * Portions Copyright 2012-2014 ForgeRock AS |
| | | * Portions Copyright 2012-2015 ForgeRock AS |
| | | */ |
| | | |
| | | package org.opends.admin.ads.util; |
| | |
| | | * LDAP entry. |
| | | * @throws NamingException if there is an error processing the entry. |
| | | */ |
| | | static public String getFirstValue(SearchResult entry, String attrName) |
| | | public static String getFirstValue(SearchResult entry, String attrName) |
| | | throws NamingException |
| | | { |
| | | String v = null; |
| | |
| | | * in a LDAP entry. |
| | | * @throws NamingException if there is an error processing the entry. |
| | | */ |
| | | static public Set<String> getValues(SearchResult entry, String attrName) |
| | | public static Set<String> getValues(SearchResult entry, String attrName) |
| | | throws NamingException |
| | | { |
| | | Set<String> values = new HashSet<String>(); |