R - type of resultO - type of outputpublic interface ResultHandler<R,O>
| Modifier and Type | Method and Description |
|---|---|
List<O> |
process(SearchCriteria sc,
List<? extends R> l)
Process the results from an ldap search.
|
List<O> |
process(SearchCriteria sc,
NamingEnumeration<? extends R> en)
Process the results from an ldap search.
|
List<O> |
process(SearchCriteria sc,
NamingEnumeration<? extends R> en,
Class<?>[] ignore)
Process the results from an ldap search.
|
List<O> process(SearchCriteria sc, NamingEnumeration<? extends R> en) throws NamingException
sc - SearchCriteria used to perform the searchen - NamingEnumeration of search resultsList of result objectsNamingException - if the LDAP returns an errorList<O> process(SearchCriteria sc, NamingEnumeration<? extends R> en, Class<?>[] ignore) throws NamingException
sc - SearchCriteria used to perform the searchen - NamingEnumeration of search resultsignore - Class[] of exception types to ignore resultsList of result objectsNamingException - if the LDAP returns an errorList<O> process(SearchCriteria sc, List<? extends R> l) throws NamingException
sc - SearchCriteria used to perform the searchl - List of search resultsList of result objectsNamingException - if the LDAP returns an errorCopyright © 2014. All rights reserved.