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.voidLdapConfig. 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 interfaceExtendedSearchResultHandlerProvides an interface for search result handlers that require the use of theLdapobject that was used to perform the original search.Classes in edu.vt.middleware.ldap.handler that implement SearchResultHandler Modifier and Type Class Description classBinarySearchResultHandlerBinarySearchResultHandlerprovides a search result handler which usesBinaryAttributeHandler.classCaseChangeSearchResultHandlerCaseSearchResultHandlerprovides the ability to modify the case of ldap search result DNs, attribute names, and attribute values.classCopySearchResultHandlerCopySearchResultHandlerconverts a NamingEnumeration of search results into a List of search results.classEntryDnSearchResultHandlerEntryDnSearchResultHandleradds the search result DN as an attribute to the result set.classFqdnSearchResultHandlerFqdnSearchResultHandlerensures that the DN of a search result is fully qualified.classMergeSearchResultHandlerMergeSearchResultHandlermerges the attributes found in each search result into the first search result.classRecursiveSearchResultHandlerRecursiveSearchResultHandlerrecursively searches based on a supplied attribute and merges those results into the original result set.
-