コード例 #1
0
 public static LDAPSearchAttributeKey valueOfKey(String key) {
   for (LDAPSearchAttributeKey ldapSearchAttributeKey : LDAPSearchAttributeKey.values()) {
     if (ldapSearchAttributeKey.getKey().equals(key)) {
       return ldapSearchAttributeKey;
     }
   }
   return null;
 }
コード例 #2
0
 public String getSearchAttribute(LDAPSearchAttributeKey ldapSearchAttributeKey) {
   return searchAttributes.get(ldapSearchAttributeKey.getKey());
 }