Package | Description |
---|---|
edu.vt.middleware.ldap | |
edu.vt.middleware.ldap.handler |
Modifier and Type | Method and Description |
---|---|
SearchResultHandler[] |
LdapConfig.getSearchResultHandlers()
This returns the handlers to use for processing search results.
|
Modifier and Type | Method and Description |
---|---|
protected Iterator<SearchResult> |
AbstractLdap.pagedSearch(String dn,
String filter,
Object[] filterArgs,
SearchControls searchControls,
SearchResultHandler... handler)
This will query the LDAP with the supplied dn, filter, filter arguments,
and search controls.
|
Iterator<SearchResult> |
Ldap.search(String dn,
SearchFilter filter,
SearchControls searchControls,
SearchResultHandler... handler)
This will query the LDAP with the supplied dn, filter, search controls, and
search result handler.
|
Iterator<SearchResult> |
Ldap.search(String dn,
SearchFilter filter,
String[] retAttrs,
SearchResultHandler... handler)
This will query the LDAP with the supplied dn, filter, return attributes,
and search result handler.
|
protected Iterator<SearchResult> |
AbstractLdap.search(String dn,
String filter,
Object[] filterArgs,
SearchControls searchControls,
SearchResultHandler... handler)
This will query the LDAP with the supplied dn, filter, filter arguments,
and search controls.
|
Iterator<SearchResult> |
Ldap.searchAttributes(String dn,
Attributes matchAttrs,
String[] retAttrs,
SearchResultHandler... handler)
This will query the LDAP for the supplied dn, matching attributes and
return attributes.
|
protected Iterator<SearchResult> |
AbstractLdap.searchAttributes(String dn,
Attributes matchAttrs,
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.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ExtendedSearchResultHandler
Provides an interface for search result handlers that require the use of the
Ldap object that was used to perform the original search. |
Modifier and Type | Class and Description |
---|---|
class |
BinarySearchResultHandler
BinarySearchResultHandler provides a search result handler which
uses BinaryAttributeHandler . |
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. |
Copyright © 2014. All rights reserved.