Package org.springframework.ldap.core
Interface AuthenticatedLdapEntryContextCallback
-
- All Known Implementing Classes:
LookupAttemptingCallback
public interface AuthenticatedLdapEntryContextCallback
Callback interface to be used in the authentication methods inLdapOperations
for performing operations on individually authenticated contexts.- Since:
- 1.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
executeWithContext(javax.naming.directory.DirContext ctx, LdapEntryIdentification ldapEntryIdentification)
Perform some LDAP operation on the supplied authenticatedDirContext
instance.
-
-
-
Method Detail
-
executeWithContext
void executeWithContext(javax.naming.directory.DirContext ctx, LdapEntryIdentification ldapEntryIdentification)
Perform some LDAP operation on the supplied authenticatedDirContext
instance. The target context will be automatically closed.- Parameters:
ctx
- theDirContext
instance to perform an operation on.ldapEntryIdentification
- the identification of the LDAP entry used to authenticate the suppliedDirContext
.
-
-