Uses of Interface
org.ldaptive.auth.AuthenticationHandler
-
Packages that use AuthenticationHandler Package Description org.ldaptive.auth -
-
Uses of AuthenticationHandler in org.ldaptive.auth
Classes in org.ldaptive.auth that implement AuthenticationHandler Modifier and Type Class Description class
AbstractAuthenticationHandler
Base class for an LDAP authentication implementations.class
AggregateAuthenticationHandler
Used in conjunction with anAggregateDnResolver
to authenticate the resolved DN.class
CompareAuthenticationHandler
Provides an LDAP authentication implementation that uses a compare operation against the userPassword attribute.class
SimpleBindAuthenticationHandler
Provides an LDAP authentication implementation that leverages the LDAP bind operation.Fields in org.ldaptive.auth declared as AuthenticationHandler Modifier and Type Field Description private AuthenticationHandler
Authenticator. authenticationHandler
Handler to handle authentication.Fields in org.ldaptive.auth with type parameters of type AuthenticationHandler Modifier and Type Field Description private Map<String,AuthenticationHandler>
AggregateAuthenticationHandler. authenticationHandlers
Labeled authentication handlers.Methods in org.ldaptive.auth that return AuthenticationHandler Modifier and Type Method Description AuthenticationHandler
Authenticator. getAuthenticationHandler()
Returns the authentication handler.Methods in org.ldaptive.auth that return types with arguments of type AuthenticationHandler Modifier and Type Method Description Map<String,AuthenticationHandler>
AggregateAuthenticationHandler. getAuthenticationHandlers()
Returns the authentication handlers to aggregate over.Methods in org.ldaptive.auth with parameters of type AuthenticationHandler Modifier and Type Method Description void
AggregateAuthenticationHandler. addAuthenticationHandler(String label, AuthenticationHandler handler)
Adds an authentication handler with the supplied label.Authenticator.Builder
Authenticator.Builder. authenticationHandler(AuthenticationHandler handler)
Sets the authentication handler.AggregateAuthenticationHandler.Builder
AggregateAuthenticationHandler.Builder. handler(String label, AuthenticationHandler handler)
void
Authenticator. setAuthenticationHandler(AuthenticationHandler handler)
Sets the authentication handler.Method parameters in org.ldaptive.auth with type arguments of type AuthenticationHandler Modifier and Type Method Description void
AggregateAuthenticationHandler. setAuthenticationHandlers(Map<String,AuthenticationHandler> handlers)
Sets the authentication handlers to aggregate over.Constructors in org.ldaptive.auth with parameters of type AuthenticationHandler Constructor Description Authenticator(DnResolver resolver, AuthenticationHandler handler)
Creates a new authenticator.Constructor parameters in org.ldaptive.auth with type arguments of type AuthenticationHandler Constructor Description AggregateAuthenticationHandler(Map<String,AuthenticationHandler> handlers)
Creates a new aggregate authentication handler.
-