Spring LDAP Framework

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

Packages that use NameClassPairCallbackHandler
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. 
 

Uses of NameClassPairCallbackHandler in org.springframework.ldap.core
 

Classes in org.springframework.ldap.core that implement NameClassPairCallbackHandler
 class AttributesMapperCallbackHandler
          A CollectingNameClassPairCallbackHandler to wrap an AttributesMapper.
 class CollectingNameClassPairCallbackHandler
          A NameClassPairCallbackHandler to collect all results in an internal List.
 class ContextMapperCallbackHandler
          A CollectingNameClassPairCallbackHandler to wrap a ContextMapper.
static class LdapTemplate.MappingCollectingNameClassPairCallbackHandler
          A NameClassPairCallbackHandler that passes the NameClassPairs found to a NameClassPairMapper and collects the results in a list.
 

Methods in org.springframework.ldap.core with parameters of type NameClassPairCallbackHandler
 void LdapTemplate.list(Name base, NameClassPairCallbackHandler handler)
           
 void LdapOperations.list(Name base, NameClassPairCallbackHandler handler)
          Perform a non-recursive listing of the children of the given base.
 void LdapTemplate.list(String base, NameClassPairCallbackHandler handler)
           
 void LdapOperations.list(String base, NameClassPairCallbackHandler handler)
          Perform a non-recursive listing of the children of the given base.
 void LdapTemplate.listBindings(Name base, NameClassPairCallbackHandler handler)
           
 void LdapOperations.listBindings(Name base, NameClassPairCallbackHandler handler)
          Perform a non-recursive listing of the children of the given base.
 void LdapTemplate.listBindings(String base, NameClassPairCallbackHandler handler)
           
 void LdapOperations.listBindings(String base, NameClassPairCallbackHandler handler)
          Perform a non-recursive listing of the children of the given base.
 void LdapTemplate.search(Name base, String filter, int searchScope, boolean returningObjFlag, NameClassPairCallbackHandler handler)
           
 void LdapOperations.search(Name base, String filter, int searchScope, boolean returningObjFlag, NameClassPairCallbackHandler handler)
          Search for all objects matching the supplied filter.
 void LdapTemplate.search(Name base, String filter, NameClassPairCallbackHandler handler)
           
 void LdapOperations.search(Name base, String filter, NameClassPairCallbackHandler handler)
          Search for all objects matching the supplied filter.
 void LdapTemplate.search(Name base, String filter, SearchControls controls, NameClassPairCallbackHandler handler)
           
 void LdapOperations.search(Name base, String filter, SearchControls controls, NameClassPairCallbackHandler handler)
          Search for all objects matching the supplied filter.
 void LdapTemplate.search(Name base, String filter, SearchControls controls, NameClassPairCallbackHandler handler, 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(SearchExecutor se, NameClassPairCallbackHandler handler)
          Perform a search operation, such as a search(), list() or listBindings().
 void LdapOperations.search(SearchExecutor se, NameClassPairCallbackHandler handler)
          Perform a search using a particular SearchExecutor.
 void LdapTemplate.search(SearchExecutor se, NameClassPairCallbackHandler handler, DirContextProcessor processor)
          Perform a search operation, such as a search(), list() or listBindings().
 void LdapOperations.search(SearchExecutor se, NameClassPairCallbackHandler handler, DirContextProcessor processor)
          Perform a search using a particular SearchExecutor and context processor.
 void LdapTemplate.search(String base, String filter, int searchScope, boolean returningObjFlag, NameClassPairCallbackHandler handler)
           
 void LdapOperations.search(String base, String filter, int searchScope, boolean returningObjFlag, NameClassPairCallbackHandler handler)
          Search for all objects matching the supplied filter.
 void LdapTemplate.search(String base, String filter, NameClassPairCallbackHandler handler)
           
 void LdapOperations.search(String base, String filter, NameClassPairCallbackHandler handler)
          Search for all objects matching the supplied filter.
 void LdapTemplate.search(String base, String filter, SearchControls controls, NameClassPairCallbackHandler handler)
           
 void LdapOperations.search(String base, String filter, SearchControls controls, NameClassPairCallbackHandler handler)
          Search for all objects matching the supplied filter.
 void LdapTemplate.search(String base, String filter, SearchControls controls, NameClassPairCallbackHandler handler, DirContextProcessor processor)
           
 void LdapOperations.search(String base, String filter, SearchControls controls, NameClassPairCallbackHandler handler, DirContextProcessor processor)
          Search for all objects matching the supplied filter.
 

Uses of NameClassPairCallbackHandler in org.springframework.ldap.core.simple
 

Classes in org.springframework.ldap.core.simple that implement NameClassPairCallbackHandler
 class ContextMapperCallbackHandlerWithControls
          Currently only per request controls can be inspected via the post process method on a context processor.
 

Uses of NameClassPairCallbackHandler in org.springframework.ldap.core.support
 

Classes in org.springframework.ldap.core.support that implement NameClassPairCallbackHandler
 class CountNameClassPairCallbackHandler
          A NameClassPairCallbackHandler for counting all returned entries.
 


Spring LDAP Framework

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