Package org.h2.api
Interface CredentialsValidator
- All Superinterfaces:
Configurable
- All Known Implementing Classes:
JaasCredentialsValidator
,LdapCredentialsValidator
,StaticUserCredentialsValidator
A class that implement this interface can be used to validate credentials
provided by client.
This feature is experimental and subject to change
-
Method Summary
Modifier and TypeMethodDescriptionboolean
validateCredentials
(AuthenticationInfo authenticationInfo) Validate user credential.Methods inherited from interface org.h2.security.auth.Configurable
configure
-
Method Details
-
validateCredentials
Validate user credential.- Parameters:
authenticationInfo
- = authentication info- Returns:
- true if credentials are valid, otherwise false
- Throws:
Exception
- any exception occurred (invalid credentials or internal issue) prevent user login
-