Package org.h2.api
Interface UserToRolesMapper
- All Superinterfaces:
Configurable
- All Known Implementing Classes:
AssignRealmNameRole
,StaticRolesMapper
A class that implement this interface can be used during authentication to
map external users to database roles.
This feature is experimental and subject to change
-
Method Summary
Modifier and TypeMethodDescriptionmapUserToRoles
(AuthenticationInfo authenticationInfo) Map user identified by authentication info to a set of granted roles.Methods inherited from interface org.h2.security.auth.Configurable
configure
-
Method Details
-
mapUserToRoles
Collection<String> mapUserToRoles(AuthenticationInfo authenticationInfo) throws AuthenticationException Map user identified by authentication info to a set of granted roles.- Parameters:
authenticationInfo
- authentication information- Returns:
- list of roles to be assigned to the user temporary
- Throws:
AuthenticationException
- on authentication exception
-