Uses of Interface
edu.vt.middleware.ldap.handler.SearchResultHandler
-
Packages that use SearchResultHandler Package Description edu.vt.middleware.ldap edu.vt.middleware.ldap.handler -
-
Uses of SearchResultHandler in edu.vt.middleware.ldap
Methods in edu.vt.middleware.ldap that return SearchResultHandler Modifier and Type Method Description SearchResultHandler[]
LdapConfig. getSearchResultHandlers()
This returns the handlers to use for processing search results.Methods in edu.vt.middleware.ldap with parameters of type SearchResultHandler Modifier and Type Method Description protected java.util.Iterator<javax.naming.directory.SearchResult>
AbstractLdap. pagedSearch(java.lang.String dn, java.lang.String filter, java.lang.Object[] filterArgs, javax.naming.directory.SearchControls searchControls, SearchResultHandler... handler)
This will query the LDAP with the supplied dn, filter, filter arguments, and search controls.protected java.util.Iterator<javax.naming.directory.SearchResult>
AbstractLdap. search(java.lang.String dn, java.lang.String filter, java.lang.Object[] filterArgs, javax.naming.directory.SearchControls searchControls, SearchResultHandler... handler)
This will query the LDAP with the supplied dn, filter, filter arguments, and search controls.java.util.Iterator<javax.naming.directory.SearchResult>
Ldap. search(java.lang.String dn, SearchFilter filter, java.lang.String[] retAttrs, SearchResultHandler... handler)
This will query the LDAP with the supplied dn, filter, return attributes, and search result handler.java.util.Iterator<javax.naming.directory.SearchResult>
Ldap. search(java.lang.String dn, SearchFilter filter, javax.naming.directory.SearchControls searchControls, SearchResultHandler... handler)
This will query the LDAP with the supplied dn, filter, search controls, and search result handler.protected java.util.Iterator<javax.naming.directory.SearchResult>
AbstractLdap. searchAttributes(java.lang.String dn, javax.naming.directory.Attributes matchAttrs, java.lang.String[] retAttrs, SearchResultHandler... handler)
This will query the LDAP for the supplied dn, matching attributes and return attributes.java.util.Iterator<javax.naming.directory.SearchResult>
Ldap. searchAttributes(java.lang.String dn, javax.naming.directory.Attributes matchAttrs, java.lang.String[] retAttrs, SearchResultHandler... handler)
This will query the LDAP for the supplied dn, matching attributes and return attributes.void
LdapConfig. setSearchResultHandlers(SearchResultHandler[] handlers)
This sets the handlers for processing search results. -
Uses of SearchResultHandler in edu.vt.middleware.ldap.handler
Subinterfaces of SearchResultHandler in edu.vt.middleware.ldap.handler Modifier and Type Interface Description interface
ExtendedSearchResultHandler
Provides an interface for search result handlers that require the use of theLdap
object that was used to perform the original search.Classes in edu.vt.middleware.ldap.handler that implement SearchResultHandler Modifier and Type Class Description class
BinarySearchResultHandler
BinarySearchResultHandler
provides a search result handler which usesBinaryAttributeHandler
.class
CaseChangeSearchResultHandler
CaseSearchResultHandler
provides the ability to modify the case of ldap search result DNs, attribute names, and attribute values.class
CopySearchResultHandler
CopySearchResultHandler
converts a NamingEnumeration of search results into a List of search results.class
EntryDnSearchResultHandler
EntryDnSearchResultHandler
adds the search result DN as an attribute to the result set.class
FqdnSearchResultHandler
FqdnSearchResultHandler
ensures that the DN of a search result is fully qualified.class
MergeSearchResultHandler
MergeSearchResultHandler
merges the attributes found in each search result into the first search result.class
RecursiveSearchResultHandler
RecursiveSearchResultHandler
recursively searches based on a supplied attribute and merges those results into the original result set.
-