Class PartialAuthnState
- java.lang.Object
-
- pl.edu.icm.unity.engine.api.authn.PartialAuthnState
-
public class PartialAuthnState extends java.lang.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(java.lang.String firstFactorOptionId, BindingAuthn secondaryAuthenticator, AuthenticationResult result, AuthenticationFlow flow)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthenticationFlow
getAuthenticationFlow()
java.lang.String
getFirstFactorOptionId()
AuthenticationResult
getPrimaryResult()
BindingAuthn
getSecondaryAuthenticator()
boolean
isSecondaryAuthenticationRequired()
-
-
-
Constructor Detail
-
PartialAuthnState
public PartialAuthnState(java.lang.String 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 java.lang.String getFirstFactorOptionId()
-
-