Spring LDAP Framework

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

Packages that use ContextSource
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. 
org.springframework.ldap.odm.core.impl Provides a single public class which implements OdmManager
org.springframework.ldap.pool.factory Core classes for the pooling library. 
org.springframework.ldap.test Utilities to simplify integration testing against LDAP targets. 
org.springframework.ldap.transaction.compensating.manager The core implementation classes for client-side LDAP transactions. 
 

Uses of ContextSource in org.springframework.ldap.core
 

Methods in org.springframework.ldap.core that return ContextSource
 ContextSource LdapTemplate.getContextSource()
          Get the ContextSource.
 

Methods in org.springframework.ldap.core with parameters of type ContextSource
 void LdapTemplate.setContextSource(ContextSource contextSource)
          Set the ContextSource.
 

Constructors in org.springframework.ldap.core with parameters of type ContextSource
LdapTemplate(ContextSource contextSource)
          Constructor to setup instance directly.
 

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

Constructors in org.springframework.ldap.core.simple with parameters of type ContextSource
SimpleLdapTemplate(ContextSource contextSource)
          Constructs a new SimpleLdapTemplate instance, automatically creating a wrapped LdapTemplate instance to work with.
 

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

Subinterfaces of ContextSource in org.springframework.ldap.core.support
 interface BaseLdapPathContextSource
          Interface to be implemented by ContextSources that are capable of providing the base LDAP path.
 

Classes in org.springframework.ldap.core.support that implement ContextSource
 class AbstractContextSource
          Abstract implementation of the ContextSource interface.
 class DirContextSource
          ContextSource implementation which creates InitialDirContext instances, for LDAPv2 compatibility.
 class LdapContextSource
          ContextSource implementation which creates an InitialLdapContext instance.
 class SingleContextSource
          A ContextSource to be used as a decorator around a target ContextSource to make sure the target is never actually closed.
 

Uses of ContextSource in org.springframework.ldap.odm.core.impl
 

Methods in org.springframework.ldap.odm.core.impl with parameters of type ContextSource
 void OdmManagerImplFactoryBean.setContextSource(ContextSource contextSource)
          Set the ContextSource to use to interact with the LDAP directory.
 

Constructors in org.springframework.ldap.odm.core.impl with parameters of type ContextSource
OdmManagerImpl(ConverterManager converterManager, ContextSource contextSource)
           
OdmManagerImpl(ConverterManager converterManager, ContextSource contextSource, Set<Class<?>> managedClasses)
           
 

Uses of ContextSource in org.springframework.ldap.pool.factory
 

Classes in org.springframework.ldap.pool.factory that implement ContextSource
 class MutablePoolingContextSource
          A PoolingContextSource subclass that creates MutableDelegatingLdapContext instances.
 class PoolingContextSource
          A ContextSource implementation that wraps an object pool and another ContextSource.
 

Methods in org.springframework.ldap.pool.factory that return ContextSource
 ContextSource PoolingContextSource.getContextSource()
           
 

Methods in org.springframework.ldap.pool.factory with parameters of type ContextSource
 void PoolingContextSource.setContextSource(ContextSource contextSource)
           
 

Uses of ContextSource in org.springframework.ldap.test
 

Methods in org.springframework.ldap.test with parameters of type ContextSource
static void LdapTestUtils.cleanAndSetup(ContextSource contextSource, DistinguishedName rootNode, Resource ldifFile)
           
static void LdapTestUtils.clearSubContexts(ContextSource contextSource, Name name)
          Clear the directory sub-tree starting with the node represented by the supplied distinguished name.
static void LdapTestUtils.loadLdif(ContextSource contextSource, Resource ldifFile)
          Load an Ldif file into an LDAP server.
 

Uses of ContextSource in org.springframework.ldap.transaction.compensating.manager
 

Classes in org.springframework.ldap.transaction.compensating.manager that implement ContextSource
 class TransactionAwareContextSourceProxy
          A proxy for ContextSource to make sure that the returned DirContext objects are aware of the surrounding transactions.
 

Methods in org.springframework.ldap.transaction.compensating.manager that return ContextSource
 ContextSource ContextSourceTransactionManagerDelegate.getContextSource()
           
 ContextSource ContextSourceTransactionManager.getContextSource()
          Get the ContextSource.
 ContextSource ContextSourceAndHibernateTransactionManager.getContextSource()
           
 ContextSource ContextSourceAndDataSourceTransactionManager.getContextSource()
           
 ContextSource TransactionAwareContextSourceProxy.getTarget()
          Get the target ContextSource.
 

Methods in org.springframework.ldap.transaction.compensating.manager with parameters of type ContextSource
 void ContextSourceTransactionManagerDelegate.setContextSource(ContextSource contextSource)
          Set the ContextSource to work on.
 void ContextSourceTransactionManager.setContextSource(ContextSource contextSource)
          Set the ContextSource.
 void ContextSourceAndHibernateTransactionManager.setContextSource(ContextSource contextSource)
           
 void ContextSourceAndDataSourceTransactionManager.setContextSource(ContextSource contextSource)
           
 

Constructors in org.springframework.ldap.transaction.compensating.manager with parameters of type ContextSource
TransactionAwareContextSourceProxy(ContextSource target)
          Constructor.
TransactionAwareDirContextInvocationHandler(DirContext target, ContextSource contextSource)
          Constructor.
 


Spring LDAP Framework

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