Klasse Ltpa2AuthManager
java.lang.Object
de.sephirothj.spring.security.ltpa2.reactive.Ltpa2AuthManager
- Alle implementierten Schnittstellen:
org.springframework.security.authentication.ReactiveAuthenticationManager
public class Ltpa2AuthManager
extends Object
implements org.springframework.security.authentication.ReactiveAuthenticationManager
Performs the final authentication of an
Authentication
instance previously created by Ltpa2AuthConverter
.- Autor:
- Sephiroth
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungreactor.core.publisher.Mono
<org.springframework.security.core.Authentication> authenticate
(org.springframework.security.core.Authentication authentication) Attempts to authenticate the providedAuthentication
with aLtpa2Token
as credentials
-
Konstruktordetails
-
Ltpa2AuthManager
public Ltpa2AuthManager()
-
-
Methodendetails
-
authenticate
public reactor.core.publisher.Mono<org.springframework.security.core.Authentication> authenticate(org.springframework.security.core.Authentication authentication) Attempts to authenticate the providedAuthentication
with aLtpa2Token
as credentials- Angegeben von:
authenticate
in Schnittstelleorg.springframework.security.authentication.ReactiveAuthenticationManager
- Parameter:
authentication
- theAuthentication
to test- Gibt zurück:
- 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.
-