Java org.springframework.security.ldap SpringSecurityLdapTemplate fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.security.ldap SpringSecurityLdapTemplate fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.security.ldap SpringSecurityLdapTemplate.

The text is from its open source code.

Field

StringDN_KEY
Every search results where a record is defined by a Map<String,String[]> contains at least this key - the DN of the record itself.

Constructor

Method

booleancompare(final String dn, final String attributeName, final Object value)
Performs an LDAP compare operation of the value of an attribute for a particular directory entry.
DirContextOperationsretrieveEntry(final String dn, final String[] attributesToRetrieve)
Composes an object from the attributes of the given DN.
SetsearchForSingleAttributeValues(final String base, final String filter, final Object[] params, final String attributeName)
Performs a search using the supplied filter and returns the union of the values of the named attribute found in all entries matched by the search.
DirContextOperationssearchForSingleEntry(final String base, final String filter, final Object[] params)
Performs a search, with the requirement that the search shall return a single directory entry, and uses the supplied mapper to create the object from that entry.
DirContextOperationssearchForSingleEntryInternal(DirContext ctx, SearchControls searchControls, String base, String filter, Object[] params)
Internal method extracted to avoid code duplication in AD search.
voidsetSearchControls(SearchControls searchControls)
Sets the search controls which will be used for search operations by the template.