Interface LDAPUserRegistry.SearchCallback
-
- All Known Implementing Classes:
LDAPUserRegistry.AbstractSearchCallback
- Enclosing class:
- LDAPUserRegistry
protected static interface LDAPUserRegistry.SearchCallbackAn interface for callbacks passed to theLDAPUserRegistry.processQuery(SearchCallback, String, String, String[])method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()Release any resources held by the callback.voidprocess(SearchResult result)Processes the given search result.
-
-
-
Method Detail
-
process
void process(SearchResult result) throws NamingException, ParseException
Processes the given search result.- Parameters:
result- the result- Throws:
NamingException- on naming exceptionsParseException- on parse exceptions
-
close
void close() throws NamingExceptionRelease any resources held by the callback.- Throws:
NamingException- the naming exception
-
-