Hi
I'm missing the following methods from the LdapOperations interface and the corresponding LdapTemplate implementations:
<T> List<T> search(LdapQuery query, AttributesMapper<T> mapper, DirContextProcessor processor);
<T> List<T> search(LdapQuery query, ContextMapper<T> mapper, DirContextProcessor processor);
void search(LdapQuery query, NameClassPairCallbackHandler callbackHandler, DirContextProcessor processor);
There is a workaround the use other methods, but in that case we have to provide the SearchControls instance and therefore the defaultCountLimit, timelimit, searchScope of the LdapTemplate implementation cannot be used.