Class PartialAuthnState
- java.lang.Object
-
- pl.edu.icm.unity.engine.api.authn.PartialAuthnState
-
public class PartialAuthnState extends Object
Provides information about partial state of authentication. Basing on the contents the framework should perform additional authentication or proceed to establish final authentication result.- Author:
- K. Benedyczak
-
-
Constructor Summary
Constructors Constructor Description PartialAuthnState(AuthenticationOptionKey firstFactorOptionId, BindingAuthn secondaryAuthenticator, AuthenticationResult result, AuthenticationFlow flow)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthenticationFlow
getAuthenticationFlow()
AuthenticationOptionKey
getFirstFactorOptionId()
AuthenticationResult
getPrimaryResult()
BindingAuthn
getSecondaryAuthenticator()
boolean
isSecondaryAuthenticationRequired()
-
-
-
Constructor Detail
-
PartialAuthnState
public PartialAuthnState(AuthenticationOptionKey firstFactorOptionId, BindingAuthn secondaryAuthenticator, AuthenticationResult result, AuthenticationFlow flow)
-
-
Method Detail
-
isSecondaryAuthenticationRequired
public boolean isSecondaryAuthenticationRequired()
-
getSecondaryAuthenticator
public BindingAuthn getSecondaryAuthenticator()
-
getPrimaryResult
public AuthenticationResult getPrimaryResult()
-
getAuthenticationFlow
public AuthenticationFlow getAuthenticationFlow()
-
getFirstFactorOptionId
public AuthenticationOptionKey getFirstFactorOptionId()
-
-