Package org.springframework.ldap.core
Interface ContextSource
- All Known Subinterfaces:
- BaseLdapPathContextSource
- All Known Implementing Classes:
- AbstractContextSource,- DirContextSource,- LdapContextSource,- MutablePooledContextSource,- MutablePoolingContextSource,- ObservationContextSource,- PooledContextSource,- PoolingContextSource,- SingleContextSource,- TransactionAwareContextSourceProxy
public interface ContextSource
A 
ContextSource is responsible for configuring and creating
 DirContext instances. It is typically used from LdapTemplate to
 acquiring contexts for LDAP operations, but may be used standalone to perform LDAP
 authentication.- See Also:
- 
Method SummaryModifier and TypeMethodDescriptiongetContext(String principal, String credentials) Gets aDirContextinstance authenticated using the supplied principal and credentials.Gets a read-onlyDirContext.Gets a read-writeDirContextinstance.
- 
Method Details- 
getReadOnlyContextGets a read-onlyDirContext. The returnedDirContextmust be possible to perform read-only operations on.- Returns:
- A DirContext instance, never null.
- Throws:
- NamingException- if some error occurs creating an DirContext.
 
- 
getReadWriteContextGets a read-writeDirContextinstance.- Returns:
- A DirContextinstance, nevernull.
- Throws:
- NamingException- if some error occurs creating an- DirContext.
 
- 
getContextGets aDirContextinstance authenticated using the supplied principal and credentials. Typically to be used for plain authentication purposes. Note that this method will never make use of native Java LDAP pooling, even though this instance is configured to do so. This is to force password changes in the target directory to take effect as soon as possible.- Parameters:
- principal- The principal (typically a distinguished name of a user in the LDAP tree) to use for authentication.
- credentials- The credentials to use for authentication.
- Returns:
- an authenticated DirContextinstance, nevernull.
- Throws:
- NamingException
- Since:
- 1.3
 
 
-