Class ChangePasswordParams
- java.lang.Object
-
- com.vasco.orchestration.client.flows.change_password.ChangePasswordParams
-
public class ChangePasswordParams extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description ChangePasswordParams()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ChangePasswordCallback
getChangePasswordCallback()
Retrieves the callback object for change password.CryptoAppIndex
getCryptoAppIndex()
Retrieves the crypto app index used to generate OTP (One Time Password)OrchestrationUser
getOrchestrationUser()
Gets the configured user for changing the password.void
setChangePasswordCallback(ChangePasswordCallback changePasswordCallback)
Sets the objects containing the change password callbacks.void
setCryptoAppIndex(CryptoAppIndex cryptoAppIndex)
Set the crypto app index for generating OTPs.void
setOrchestrationUser(OrchestrationUser orchestrationUser)
Sets the user to be used for changing the password.
-
-
-
Method Detail
-
getOrchestrationUser
public OrchestrationUser getOrchestrationUser()
Gets the configured user for changing the password.- Returns:
- the configured user
-
setOrchestrationUser
public void setOrchestrationUser(OrchestrationUser orchestrationUser)
Sets the user to be used for changing the password.- Parameters:
orchestrationUser
- the user
-
getChangePasswordCallback
public ChangePasswordCallback getChangePasswordCallback()
Retrieves the callback object for change password.- Returns:
- an object containing the callbacks called during change password process.
-
setChangePasswordCallback
public void setChangePasswordCallback(ChangePasswordCallback changePasswordCallback)
Sets the objects containing the change password callbacks.- Parameters:
changePasswordCallback
- contains the callbacks for change password.
-
getCryptoAppIndex
public CryptoAppIndex getCryptoAppIndex()
Retrieves the crypto app index used to generate OTP (One Time Password)- Returns:
- integer value for the index.
-
setCryptoAppIndex
public void setCryptoAppIndex(CryptoAppIndex cryptoAppIndex)
Set the crypto app index for generating OTPs. Depends on the Static vector.- Parameters:
cryptoAppIndex
- crypto app index to set.
-
-