I agree with fanf42, I just want to expand on his answer. If you're using Spring your choice is easy. For the rest of us, the Apache API isn't mature yet and most others appear to be unmaintained, leaving JNDI and UnboundID's LDAP API.
Of the two, UnboundID's API is far easier to use. Here's a simple example of checking a user's credentials:
with JNDI:
static boolean authenticate(String username, String password) {
try {
Properties props = new Properties();
props.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
props.put(Context.PROVIDER_URL, "ldap://ldap.example.com");
props.put(Context.REFERRAL, "ignore");
props.put(Context.SECURITY_PRINCIPAL, dnFromUser(username));
props.put(Context.SECURITY_CREDENTIALS, password);
InitialDirContext context = new InitialDirContext(props);
return true;
}
catch (NamingException e) {
return false;
}
}
private static String dnFromUser(String username) throws NamingException {
Properties props = new Properties();
props.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
props.put(Context.PROVIDER_URL, "ldap://ldap.example.com");
props.put(Context.REFERRAL, "ignore");
InitialDirContext context = new InitialDirContext(props);
SearchControls ctrls = new SearchControls();
ctrls.setReturningAttributes(new String[] { "givenName", "sn" });
ctrls.setSearchScope(SearchControls.SUBTREE_SCOPE);
NamingEnumeration<SearchResult> answers = context.search("dc=People,dc=example,dc=com", "(uid=" + username + ")", ctrls);
SearchResult result = answers.next();
return result.getNameInNamespace();
}
with UnboundID:
static boolean authenticate(String username, String password) throws LDAPException {
LDAPConnection ldap = new LDAPConnection("ldap.example.com", 389);
SearchResult sr = ldap.search("dc=People,dc=example,dc=com", SearchScope.SUB, "(uid=" + username + ")");
if (sr.getEntryCount() == 0)
return false;
String dn = sr.getSearchEntries().get(0).getDN();
try {
ldap = new LDAPConnection("ldap.example.com", 389, dn, password);
return true;
}
catch (LDAPException e) {
if (e.getResultCode() == ResultCode.INVALID_CREDENTIALS)
return false;
throw e;
}
}
In addition to being considerably shorter, naming is more intuitive and there are no obscure intermediate objects to create.