Interface | Description |
---|---|
ServerAuthenticationConverter |
A strategy used for converting from a
ServerWebExchange to an Authentication used for
authenticating with a provided ReactiveAuthenticationManager . |
ServerAuthenticationFailureHandler |
Handles authentication failure
|
ServerAuthenticationSuccessHandler |
Handles authentication success
|
Class | Description |
---|---|
AnonymousAuthenticationWebFilter |
Detects if there is no
Authentication object in the
ReactiveSecurityContextHolder , and populates it with one if needed. |
AuthenticationWebFilter |
A
WebFilter that performs authentication of a particular request. |
DelegatingServerAuthenticationSuccessHandler |
Delegates to a collection of
ServerAuthenticationSuccessHandler implementations. |
HttpBasicServerAuthenticationEntryPoint |
Prompts a user for HTTP Basic authentication.
|
HttpStatusServerEntryPoint |
A
ServerAuthenticationEntryPoint that sends a generic HttpStatus as a
response. |
ReactivePreAuthenticatedAuthenticationManager |
Reactive version of
PreAuthenticatedAuthenticationProvider
This manager receives a PreAuthenticatedAuthenticationToken , checks that associated account is not disabled,
expired, or blocked, and returns new authenticated PreAuthenticatedAuthenticationToken . |
RedirectServerAuthenticationEntryPoint |
Performs a redirect to a specified location.
|
RedirectServerAuthenticationFailureHandler |
Performs a redirect to a specified location.
|
RedirectServerAuthenticationSuccessHandler |
Performs a redirect on authentication success.
|
ServerAuthenticationEntryPointFailureHandler |
Adapts a
ServerAuthenticationEntryPoint into a ServerAuthenticationFailureHandler |
ServerFormLoginAuthenticationConverter |
Converts a ServerWebExchange into a UsernamePasswordAuthenticationToken from the form
data HTTP parameters.
|
ServerHttpBasicAuthenticationConverter |
Converts from a
ServerWebExchange to an Authentication that can be authenticated. |
ServerX509AuthenticationConverter |
Converts from a
SslInfo provided by a request to an PreAuthenticatedAuthenticationToken that can be authenticated. |
WebFilterChainServerAuthenticationSuccessHandler |
Success handler that continues the filter chain after authentication success.
|