Class LocalTransactionParams
- java.lang.Object
-
- com.vasco.orchestration.client.flows.local_transaction.LocalTransactionParams
-
public class LocalTransactionParams extends java.lang.Object
Parameters for performing a local transaction.
-
-
Constructor Summary
Constructors Constructor Description LocalTransactionParams()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CryptoAppIndex
getCryptoAppIndex()
java.util.List<java.lang.String>
getDataFields()
LocalTransactionCallback
getLocalTransactionCallback()
OrchestrationUser
getOrchestrationUser()
Gets the configured user for performing a local transaction.ProtectionType
getProtectionType()
void
setCryptoAppIndex(CryptoAppIndex cryptoAppIndex)
void
setDataFields(java.util.List<java.lang.String> dataFields)
void
setLocalTransactionCallback(LocalTransactionCallback localTransactionCallback)
void
setOrchestrationUser(OrchestrationUser orchestrationUser)
Sets the user to be used for performing a local transaction.void
setProtectionType(ProtectionType protectionType)
-
-
-
Method Detail
-
getOrchestrationUser
public OrchestrationUser getOrchestrationUser()
Gets the configured user for performing a local transaction.- Returns:
- the configured user
-
setOrchestrationUser
public void setOrchestrationUser(OrchestrationUser orchestrationUser)
Sets the user to be used for performing a local transaction.- 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.
-
getDataFields
public java.util.List<java.lang.String> getDataFields()
- Returns:
- the data fields used to generate the signature.
-
setDataFields
public void setDataFields(java.util.List<java.lang.String> dataFields)
- Parameters:
dataFields
- the data fields to use for generating the signature.
-
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.
-
getLocalTransactionCallback
public LocalTransactionCallback getLocalTransactionCallback()
- Returns:
- the callback used to receive events related to local transaction.
-
setLocalTransactionCallback
public void setLocalTransactionCallback(LocalTransactionCallback localTransactionCallback)
- Parameters:
localTransactionCallback
- the callback used to receive events related to local transaction.
-
-