Class DelegatingReactiveAuthenticationManager
java.lang.Object
org.springframework.security.authentication.DelegatingReactiveAuthenticationManager
- All Implemented Interfaces:
ReactiveAuthenticationManager
public class DelegatingReactiveAuthenticationManager
extends Object
implements ReactiveAuthenticationManager
A
ReactiveAuthenticationManager
that delegates to other
ReactiveAuthenticationManager
instances using the result from the first non
empty result.- Since:
- 5.1
-
Constructor Summary
ConstructorDescriptionDelegatingReactiveAuthenticationManager
(ReactiveAuthenticationManager... entryPoints) -
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<Authentication>
authenticate
(Authentication authentication) Attempts to authenticate the providedAuthentication
-
Constructor Details
-
DelegatingReactiveAuthenticationManager
-
DelegatingReactiveAuthenticationManager
-
-
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.
-