Package org.h2.security.auth.impl
Class LdapCredentialsValidator
- java.lang.Object
-
- org.h2.security.auth.impl.LdapCredentialsValidator
-
- All Implemented Interfaces:
CredentialsValidator
,Configurable
public class LdapCredentialsValidator extends java.lang.Object implements CredentialsValidator
Validate credentials by performing an LDAP bindConfiguration parameters:
- bindDnPattern bind dn pattern with %u instead of username (example: uid=%u,ou=users,dc=example,dc=com)
- host ldap server
- port of ldap service; optional, by default 389 for insecure, 636 for secure
- secure, optional by default is true (use SSL)
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
bindDnPattern
private java.lang.String
host
private int
port
private boolean
secure
private java.lang.String
url
-
Constructor Summary
Constructors Constructor Description LdapCredentialsValidator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
configure(ConfigProperties configProperties)
configure the componentboolean
validateCredentials(AuthenticationInfo authenticationInfo)
Validate user credential.
-
-
-
Method Detail
-
configure
public void configure(ConfigProperties configProperties)
Description copied from interface:Configurable
configure the component- Specified by:
configure
in interfaceConfigurable
- Parameters:
configProperties
- = configuration properties
-
validateCredentials
public boolean validateCredentials(AuthenticationInfo authenticationInfo) throws java.lang.Exception
Description copied from interface:CredentialsValidator
Validate user credential.- Specified by:
validateCredentials
in interfaceCredentialsValidator
- Parameters:
authenticationInfo
- = authentication info- Returns:
- true if credentials are valid, otherwise false
- Throws:
java.lang.Exception
- any exception occurred (invalid credentials or internal issue) prevent user login
-
-