Class ActivationParams
- java.lang.Object
-
- com.vasco.orchestration.client.flows.activation.ActivationParams
-
- Direct Known Subclasses:
OnlineActivationParams
public abstract class ActivationParams extends java.lang.Object
AnActivationParams
object provides parameters for an activation process.Note:an instance of this class must be provided to the Orchestrator class whens starting the activation process (using (
Orchestrator.startActivation(ActivationParams)
).
-
-
Constructor Summary
Constructors Constructor Description ActivationParams()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActivationCallback
getActivationCallback()
Gets theActivationCallback
that the should be used during activation.CryptoAppIndex
getCryptoAppIndex()
Gets the cryptographic application index that the should be used during post activation.void
setCryptoAppIndex(CryptoAppIndex cryptoAppIndex)
Sets the cryptographic application index that the should be used during post activation.
-
-
-
Method Detail
-
getActivationCallback
public ActivationCallback getActivationCallback()
Gets theActivationCallback
that the should be used during activation.- Returns:
- the current
ActivationCallback
-
getCryptoAppIndex
public CryptoAppIndex getCryptoAppIndex()
Gets the cryptographic application index that the should be used during post activation.- Returns:
- the current cryptographic application index
-
setCryptoAppIndex
public void setCryptoAppIndex(CryptoAppIndex cryptoAppIndex)
Sets the cryptographic application index that the should be used during post activation. By default, 1st crypto application is used.- Parameters:
cryptoAppIndex
- the cryptographic application index to use
-
-