Spring LDAP Framework

Uses of Interface
org.springframework.ldap.core.AttributesMapper

Packages that use AttributesMapper
org.springframework.ldap.core Core package of the JNDI/LDAP support. 
org.springframework.ldap.test Utilities to simplify integration testing against LDAP targets. 
 

Uses of AttributesMapper in org.springframework.ldap.core
 

Methods in org.springframework.ldap.core with parameters of type AttributesMapper
 Object LdapTemplate.lookup(Name dn, AttributesMapper mapper)
           
 Object LdapOperations.lookup(Name dn, AttributesMapper mapper)
          Convenience method to get the attributes of a specified DN and automatically pass them to an AttributesMapper.
 Object LdapTemplate.lookup(Name dn, String[] attributes, AttributesMapper mapper)
           
 Object LdapOperations.lookup(Name dn, String[] attributes, AttributesMapper mapper)
          Convenience method to get the specified attributes of a specified DN and automatically pass them to an AttributesMapper.
 Object LdapTemplate.lookup(String dn, AttributesMapper mapper)
           
 Object LdapOperations.lookup(String dn, AttributesMapper mapper)
          Convenience method to get the attributes of a specified DN and automatically pass them to an AttributesMapper.
 Object LdapTemplate.lookup(String dn, String[] attributes, AttributesMapper mapper)
           
 Object LdapOperations.lookup(String dn, String[] attributes, AttributesMapper mapper)
          Convenience method to get the specified attributes of a specified DN and automatically pass them to an AttributesMapper.
 List LdapTemplate.search(Name base, String filter, AttributesMapper mapper)
           
 List LdapOperations.search(Name base, String filter, AttributesMapper mapper)
          Search for all objects matching the supplied filter.
 List LdapTemplate.search(Name base, String filter, int searchScope, AttributesMapper mapper)
           
 List LdapOperations.search(Name base, String filter, int searchScope, AttributesMapper mapper)
          Search for all objects matching the supplied filter.
 List LdapTemplate.search(Name base, String filter, int searchScope, String[] attrs, AttributesMapper mapper)
           
 List LdapOperations.search(Name base, String filter, int searchScope, String[] attrs, AttributesMapper mapper)
          Search for all objects matching the supplied filter.
 List LdapTemplate.search(Name base, String filter, SearchControls controls, AttributesMapper mapper)
           
 List LdapOperations.search(Name base, String filter, SearchControls controls, AttributesMapper mapper)
          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, AttributesMapper mapper, DirContextProcessor processor)
          Search for all objects matching the supplied filter.
 List LdapTemplate.search(String base, String filter, AttributesMapper mapper)
           
 List LdapOperations.search(String base, String filter, AttributesMapper mapper)
          Search for all objects matching the supplied filter.
 List LdapTemplate.search(String base, String filter, int searchScope, AttributesMapper mapper)
           
 List LdapOperations.search(String base, String filter, int searchScope, AttributesMapper mapper)
          Search for all objects matching the supplied filter.
 List LdapTemplate.search(String base, String filter, int searchScope, String[] attrs, AttributesMapper mapper)
           
 List LdapOperations.search(String base, String filter, int searchScope, String[] attrs, AttributesMapper mapper)
          Search for all objects matching the supplied filter.
 List LdapTemplate.search(String base, String filter, SearchControls controls, AttributesMapper mapper)
           
 List LdapOperations.search(String base, String filter, SearchControls controls, AttributesMapper mapper)
          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, AttributesMapper mapper, DirContextProcessor processor)
          Search for all objects matching the supplied filter.
 

Constructors in org.springframework.ldap.core with parameters of type AttributesMapper
AttributesMapperCallbackHandler(AttributesMapper mapper)
          Constructs a new instance around the specified AttributesMapper.
 

Uses of AttributesMapper in org.springframework.ldap.test
 

Classes in org.springframework.ldap.test that implement AttributesMapper
 class AttributeCheckAttributesMapper
          Dummy AttributesMapper for testing purposes to check that the received Attributes are the expected ones.
 


Spring LDAP Framework

Copyright © 2005-2010 The Spring LDAP Framework. All Rights Reserved.