Uses of Class
org.h2.security.auth.AuthenticationInfo
-
Packages that use AuthenticationInfo Package Description org.h2.api Contains interfaces for user-defined extensions, such as triggers and user-defined aggregate functions.org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package.org.h2.security.auth Authentication classes.org.h2.security.auth.impl Authentication classes. -
-
Uses of AuthenticationInfo in org.h2.api
Methods in org.h2.api with parameters of type AuthenticationInfo Modifier and Type Method Description java.util.Collection<java.lang.String>
UserToRolesMapper. mapUserToRoles(AuthenticationInfo authenticationInfo)
Map user identified by authentication info to a set of granted roles.boolean
CredentialsValidator. validateCredentials(AuthenticationInfo authenticationInfo)
Validate user credential. -
Uses of AuthenticationInfo in org.h2.engine
Methods in org.h2.engine with parameters of type AuthenticationInfo Modifier and Type Method Description static User
UserBuilder. buildUser(AuthenticationInfo authenticationInfo, Database database, boolean persistent)
Build the database user starting from authentication informations. -
Uses of AuthenticationInfo in org.h2.security.auth
Methods in org.h2.security.auth with parameters of type AuthenticationInfo Modifier and Type Method Description User
Authenticator. authenticate(AuthenticationInfo authenticationInfo, Database database)
Perform user authentication.User
DefaultAuthenticator. authenticate(AuthenticationInfo authenticationInfo, Database database)
private boolean
DefaultAuthenticator. updateRoles(AuthenticationInfo authenticationInfo, User user, Database database)
-
Uses of AuthenticationInfo in org.h2.security.auth.impl
Fields in org.h2.security.auth.impl declared as AuthenticationInfo Modifier and Type Field Description (package private) AuthenticationInfo
JaasCredentialsValidator.AuthenticationInfoCallbackHandler. authenticationInfo
Methods in org.h2.security.auth.impl with parameters of type AuthenticationInfo Modifier and Type Method Description java.util.Collection<java.lang.String>
AssignRealmNameRole. mapUserToRoles(AuthenticationInfo authenticationInfo)
java.util.Collection<java.lang.String>
StaticRolesMapper. mapUserToRoles(AuthenticationInfo authenticationInfo)
boolean
JaasCredentialsValidator. validateCredentials(AuthenticationInfo authenticationInfo)
boolean
LdapCredentialsValidator. validateCredentials(AuthenticationInfo authenticationInfo)
boolean
StaticUserCredentialsValidator. validateCredentials(AuthenticationInfo authenticationInfo)
Constructors in org.h2.security.auth.impl with parameters of type AuthenticationInfo Constructor Description AuthenticationInfoCallbackHandler(AuthenticationInfo authenticationInfo)
-