Class LocalAuthenticationParams
- java.lang.Object
-
- com.vasco.orchestration.client.flows.local_authentication.LocalAuthenticationParams
-
public class LocalAuthenticationParams extends java.lang.Object
Parameters for performing a local authentication.
-
-
Constructor Summary
Constructors Constructor Description LocalAuthenticationParams()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getChallenge()
CryptoAppIndex
getCryptoAppIndex()
LocalAuthenticationCallback
getLocalAuthenticationCallback()
OrchestrationUser
getOrchestrationUser()
Gets the configured user for performing a local authentication.ProtectionType
getProtectionType()
void
setChallenge(java.lang.String challenge)
void
setCryptoAppIndex(CryptoAppIndex cryptoAppIndex)
void
setLocalAuthenticationCallback(LocalAuthenticationCallback localAuthenticationCallback)
void
setOrchestrationUser(OrchestrationUser orchestrationUser)
Sets the user to be used for performing a local authentication.void
setProtectionType(ProtectionType protectionType)
-
-
-
Method Detail
-
getOrchestrationUser
public OrchestrationUser getOrchestrationUser()
Gets the configured user for performing a local authentication.- Returns:
- the configured user
-
setOrchestrationUser
public void setOrchestrationUser(OrchestrationUser orchestrationUser)
Sets the user to be used for performing a local authentication.- Parameters:
orchestrationUser
- the user
-
getCryptoAppIndex
public CryptoAppIndex getCryptoAppIndex()
- Returns:
- the crypto app index used to generate the one-time password.
-
setCryptoAppIndex
public void setCryptoAppIndex(CryptoAppIndex cryptoAppIndex)
- Parameters:
cryptoAppIndex
- the crypto app index used to generate the one-time password.
-
getChallenge
public java.lang.String getChallenge()
- Returns:
- the challenge used when computing the one-time password.
-
setChallenge
public void setChallenge(java.lang.String challenge)
- Parameters:
challenge
- A challenge to use when computing the one-time password.
-
getProtectionType
public ProtectionType getProtectionType()
- Returns:
- the protection type used to generate the one-time password.
-
setProtectionType
public void setProtectionType(ProtectionType protectionType)
- Parameters:
protectionType
- the protection type used to generate the one-time password.
-
getLocalAuthenticationCallback
public LocalAuthenticationCallback getLocalAuthenticationCallback()
- Returns:
- the callback used to receive events related to local authentication.
-
setLocalAuthenticationCallback
public void setLocalAuthenticationCallback(LocalAuthenticationCallback localAuthenticationCallback)
- Parameters:
localAuthenticationCallback
- the callback used to receive events related to local authentication.
-
-