Enum CryptoAppIndex
- java.lang.Object
-
- java.lang.Enum<CryptoAppIndex>
-
- com.vasco.orchestration.client.flows.CryptoAppIndex
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CryptoAppIndex>
public enum CryptoAppIndex extends java.lang.Enum<CryptoAppIndex>
A crypto application defines a set of characteristics for generating one-time passwords and signatures. Such characteristics include the cryptographic algorithm used (AES, DES, etc), the length of the one-time password or the fact that a challenge can be added. When integrating the Orchestration SDK, you can have up to 8 crypto applications.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CryptoAppIndex
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CryptoAppIndex[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FIRST
public static final CryptoAppIndex FIRST
-
SECOND
public static final CryptoAppIndex SECOND
-
THIRD
public static final CryptoAppIndex THIRD
-
FOURTH
public static final CryptoAppIndex FOURTH
-
FIFTH
public static final CryptoAppIndex FIFTH
-
SIXTH
public static final CryptoAppIndex SIXTH
-
SEVENTH
public static final CryptoAppIndex SEVENTH
-
EIGHTH
public static final CryptoAppIndex EIGHTH
-
-
Method Detail
-
values
public static CryptoAppIndex[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CryptoAppIndex c : CryptoAppIndex.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CryptoAppIndex valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-