Class ReactivePreAuthenticatedAuthenticationManager
java.lang.Object
org.springframework.security.web.server.authentication.ReactivePreAuthenticatedAuthenticationManager
- All Implemented Interfaces:
ReactiveAuthenticationManager
public class ReactivePreAuthenticatedAuthenticationManager
extends Object
implements ReactiveAuthenticationManager
Reactive version of
PreAuthenticatedAuthenticationProvider
This manager receives a PreAuthenticatedAuthenticationToken
, checks that
associated account is not disabled, expired, or blocked, and returns new authenticated
PreAuthenticatedAuthenticationToken
.
If no UserDetailsChecker
is provided, a default
AccountStatusUserDetailsChecker
will be created.- Since:
- 5.2
-
Constructor Summary
ConstructorDescriptionReactivePreAuthenticatedAuthenticationManager
(ReactiveUserDetailsService userDetailsService) ReactivePreAuthenticatedAuthenticationManager
(ReactiveUserDetailsService userDetailsService, UserDetailsChecker userDetailsChecker) -
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<Authentication>
authenticate
(Authentication authentication) Attempts to authenticate the providedAuthentication
-
Constructor Details
-
ReactivePreAuthenticatedAuthenticationManager
-
ReactivePreAuthenticatedAuthenticationManager
public ReactivePreAuthenticatedAuthenticationManager(ReactiveUserDetailsService userDetailsService, UserDetailsChecker userDetailsChecker)
-
-
Method Details
-
authenticate
Description copied from interface:ReactiveAuthenticationManager
Attempts to authenticate the providedAuthentication
- Specified by:
authenticate
in interfaceReactiveAuthenticationManager
- Parameters:
authentication
- theAuthentication
to test- Returns:
- if authentication is successful an
Authentication
is returned. If authentication cannot be determined, an empty Mono is returned. If authentication fails, a Mono error is returned.
-