Package de.elo.ix.client.ldap
Interface LdapUserDirectoryHandlerFactory
public interface LdapUserDirectoryHandlerFactory
LDAP authentication handler factory. Authentication handlers allow to control internal execution
steps. For each call to
UserDirectory.authenticate(String, String, String)
a dedicated
handler is created.-
Method Summary
Modifier and TypeMethodDescriptioncreateHandler
(LdapUserDirectoryHandler defaultHandler, LdapConfig config, String userName, String password, String runAsName) Create a handler.
-
Method Details
-
createHandler
LdapUserDirectoryHandler createHandler(LdapUserDirectoryHandler defaultHandler, LdapConfig config, String userName, String password, String runAsName) Create a handler.- Parameters:
defaultHandler
- Steps that should not be overloaded can be forwared to this default handler object.config
- LDAP configurationuserName
-password
-runAsName
-- Returns:
- An LdapUserDirectoryHandler object.
-