Interface | Description |
---|---|
Authentication |
Represents the state of an authentication.
|
AuthenticationProvider |
Defines an authentication provider.
|
AuthenticationRequest<T,S> |
Represents a request to authenticate.
|
AuthenticationResponse |
The response of an authentication attempt.
|
Class | Description |
---|---|
AuthenticationArgumentBinder |
Responsible for binding the authentication object to a route argument.
|
AuthenticationExceptionHandler |
Handles the server response when an
AuthenticationException is thrown. |
AuthenticationFailed |
Signalises an authentication failure and stores the failure reason.
|
AuthenticationModeCondition |
A condition that matches a supplied list of authentication modes.
|
Authenticator |
An Authenticator operates on several
AuthenticationProvider instances returning the first
authenticated AuthenticationResponse . |
BasicAuthAuthenticationConfiguration |
Configuration for basic authentication.
|
BasicAuthAuthenticationFetcher |
An implementation of
AuthenticationFetcher that decodes a username
and password from the Authorization header and authenticates the credentials
against any AuthenticationProvider s available. |
BasicAuthUtils |
Utility class for Basic Auth.
|
ClientAuthentication |
An implementation of the Authentication interface intended to be used
by clients that deserialize token information into an authentication.
|
CookieBasedAuthenticationModeCondition |
It evaluates to true if micronaut.security.authentication is set to idtoken or cookie.
|
DefaultAuthorizationExceptionHandler |
Provides the default behavior for responding to an
AuthorizationException . |
PrincipalArgumentBinder |
Responsible for binding a
Principal to a route argument. |
ServerAuthentication |
An implementation of the
Authentication interfaced intended to
be used on the server side to create authentication objects from
user data found through any means. |
UsernamePasswordCredentials |
Enum | Description |
---|---|
AuthenticationFailureReason |
Enums describes the different authentication failures.
|
AuthenticationMode |
Different authentication strategies shipped with Micronaut Security.
|
Exception | Description |
---|---|
AuthenticationException |
A runtime exception thrown when authentication fails.
|
AuthorizationException |
Exception thrown when access to a protected resource is denied.
|