Package | Description |
---|---|
org.springframework.ldap.control |
Support classes for custom request control context processors.
|
org.springframework.ldap.core |
Core package of the JNDI/LDAP support.
|
org.springframework.ldap.core.simple |
Simplification layer over LdapTemplate for Java 5 and above.
|
org.springframework.ldap.core.support |
Support classes the core Spring LDAP package.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractFallbackRequestAndResponseControlDirContextProcessor
Convenient base class useful when implementing a standard DirContextProcessor
which has a request control and a response control.
|
class |
AbstractRequestControlDirContextProcessor
Abstract superclass with responsibility to apply a single RequestControl on
an LdapContext, preserving any existing controls.
|
class |
PagedResultsDirContextProcessor
DirContextProcessor implementation for managing the paged results control.
|
class |
PagedResultsRequestControl
Deprecated.
Use PagedResultsDirContextProcessor instead.
|
class |
SortControlDirContextProcessor
DirContextProcessor implementation for managing the SortControl.
|
Modifier and Type | Method and Description |
---|---|
List |
LdapOperations.search(Name base,
String filter,
SearchControls controls,
AttributesMapper mapper,
DirContextProcessor processor)
Search for all objects matching the supplied filter.
|
List |
LdapTemplate.search(Name base,
String filter,
SearchControls controls,
AttributesMapper mapper,
DirContextProcessor processor) |
List |
LdapOperations.search(Name base,
String filter,
SearchControls controls,
ContextMapper mapper,
DirContextProcessor processor)
Search for all objects matching the supplied filter.
|
List |
LdapTemplate.search(Name base,
String filter,
SearchControls controls,
ContextMapper mapper,
DirContextProcessor processor) |
void |
LdapOperations.search(Name base,
String filter,
SearchControls controls,
NameClassPairCallbackHandler handler,
DirContextProcessor processor)
Search for all objects matching the supplied filter.
|
void |
LdapTemplate.search(Name base,
String filter,
SearchControls controls,
NameClassPairCallbackHandler handler,
DirContextProcessor processor) |
void |
LdapOperations.search(SearchExecutor se,
NameClassPairCallbackHandler handler,
DirContextProcessor processor)
Perform a search using a particular
SearchExecutor and context
processor. |
void |
LdapTemplate.search(SearchExecutor se,
NameClassPairCallbackHandler handler,
DirContextProcessor processor)
Perform a search operation, such as a search(), list() or listBindings().
|
List |
LdapOperations.search(String base,
String filter,
SearchControls controls,
AttributesMapper mapper,
DirContextProcessor processor)
Search for all objects matching the supplied filter.
|
List |
LdapTemplate.search(String base,
String filter,
SearchControls controls,
AttributesMapper mapper,
DirContextProcessor processor) |
List |
LdapOperations.search(String base,
String filter,
SearchControls controls,
ContextMapper mapper,
DirContextProcessor processor)
Search for all objects matching the supplied filter.
|
List |
LdapTemplate.search(String base,
String filter,
SearchControls controls,
ContextMapper mapper,
DirContextProcessor processor) |
void |
LdapOperations.search(String base,
String filter,
SearchControls controls,
NameClassPairCallbackHandler handler,
DirContextProcessor processor)
Search for all objects matching the supplied filter.
|
void |
LdapTemplate.search(String base,
String filter,
SearchControls controls,
NameClassPairCallbackHandler handler,
DirContextProcessor processor) |
Modifier and Type | Method and Description |
---|---|
<T> List<T> |
SimpleLdapTemplate.search(Name base,
String filter,
SearchControls controls,
ParameterizedContextMapper<T> mapper,
DirContextProcessor processor) |
<T> List<T> |
SimpleLdapOperations.search(Name base,
String filter,
SearchControls controls,
ParameterizedContextMapper<T> mapper,
DirContextProcessor processor)
Search for a List of type T using the supplied filter, SearchControls,
DirContextProcessor and ParameterizedContextMapper.
|
<T> List<T> |
SimpleLdapTemplate.search(String base,
String filter,
SearchControls controls,
ParameterizedContextMapper<T> mapper,
DirContextProcessor processor) |
<T> List<T> |
SimpleLdapOperations.search(String base,
String filter,
SearchControls controls,
ParameterizedContextMapper<T> mapper,
DirContextProcessor processor)
Search for a List of type T using the supplied filter, SearchControls,
DirContextProcessor and ParameterizedContextMapper.
|
Modifier and Type | Class and Description |
---|---|
class |
AggregateDirContextProcessor
Manages a sequence of
DirContextProcessor instances. |
Modifier and Type | Method and Description |
---|---|
void |
AggregateDirContextProcessor.addDirContextProcessor(DirContextProcessor processor)
Add the supplied DirContextProcessor to the list of managed objects.
|
Copyright © 2005–2015 The Spring LDAP Framework. All rights reserved.