Spring LDAP Framework

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

Packages that use DirContextOperations
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 DirContextOperations in org.springframework.ldap.core
 

Classes in org.springframework.ldap.core that implement DirContextOperations
 class DirContextAdapter
          Adapter that implements the interesting methods of the DirContext interface.
 

Methods in org.springframework.ldap.core that return DirContextOperations
 DirContextOperations LdapTemplate.lookupContext(Name dn)
           
 DirContextOperations LdapOperations.lookupContext(Name dn)
          Convenience method to lookup the supplied DN and automatically cast it to DirContextOperations.
 DirContextOperations LdapTemplate.lookupContext(String dn)
           
 DirContextOperations LdapOperations.lookupContext(String dn)
          Convenience method to lookup the supplied DN and automatically cast it to DirContextOperations.
 

Methods in org.springframework.ldap.core with parameters of type DirContextOperations
 void LdapTemplate.bind(DirContextOperations ctx)
           
 void LdapOperations.bind(DirContextOperations ctx)
          Bind the data in the supplied context in the tree.
 void LdapTemplate.modifyAttributes(DirContextOperations ctx)
           
 void LdapOperations.modifyAttributes(DirContextOperations ctx)
          Modify the attributes of the entry referenced by the supplied DirContextOperations instance.
 void LdapTemplate.rebind(DirContextOperations ctx)
           
 void LdapOperations.rebind(DirContextOperations ctx)
          Remove an entry and replace it with a new one.
 

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

Methods in org.springframework.ldap.core.simple that return DirContextOperations
 DirContextOperations SimpleLdapTemplate.lookupContext(Name dn)
           
 DirContextOperations SimpleLdapOperations.lookupContext(Name dn)
          Look up the specified DN, and automatically cast it to a DirContextOperations instance.
 DirContextOperations SimpleLdapTemplate.lookupContext(String dn)
           
 DirContextOperations SimpleLdapOperations.lookupContext(String dn)
          Look up the specified DN, and automatically cast it to a DirContextOperations instance.
 

Methods in org.springframework.ldap.core.simple with parameters of type DirContextOperations
 void SimpleLdapTemplate.bind(DirContextOperations ctx)
           
 void SimpleLdapOperations.bind(DirContextOperations ctx)
          Bind the data in the supplied context in the tree.
protected abstract  T AbstractParameterizedContextMapper.doMapFromContext(DirContextOperations ctx)
          Map a single DirContextOperation to an object.
 void SimpleLdapTemplate.modifyAttributes(DirContextOperations ctx)
           
 void SimpleLdapOperations.modifyAttributes(DirContextOperations ctx)
          Modify the Attributes of the entry corresponding to the supplied DirContextOperations instance.
 

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

Methods in org.springframework.ldap.core.support with parameters of type DirContextOperations
protected abstract  Object AbstractContextMapper.doMapFromContext(DirContextOperations ctx)
          Map a single DirContextOperation to an object.
 


Spring LDAP Framework

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