@Singleton public class DefaultSecurityService extends java.lang.Object implements SecurityService
SecurityService
. It uses ServerRequestContext.currentRequest()
to retrieve the Authentication
object if any.Constructor and Description |
---|
DefaultSecurityService(RolesFinder rolesFinder) |
Modifier and Type | Method and Description |
---|---|
java.util.Optional<Authentication> |
getAuthentication()
Retrieves
Authentication if authenticated. |
boolean |
hasRole(java.lang.String role)
If the current user has a specific role.
|
boolean |
isAuthenticated()
Check if a user is authenticated.
|
java.util.Optional<java.lang.String> |
username()
Get the username of the current user.
|
public DefaultSecurityService(RolesFinder rolesFinder)
rolesFinder
- Roles Parserpublic java.util.Optional<java.lang.String> username()
username
in interface SecurityService
public java.util.Optional<Authentication> getAuthentication()
Authentication
if authenticated.getAuthentication
in interface SecurityService
Authentication
of the current userpublic boolean isAuthenticated()
isAuthenticated
in interface SecurityService
public boolean hasRole(java.lang.String role)
hasRole
in interface SecurityService
role
- the role to check