Enum RemoteTransactionCallback.SessionOutdatedReason
- java.lang.Object
-
- java.lang.Enum<RemoteTransactionCallback.SessionOutdatedReason>
-
- com.vasco.orchestration.client.flows.remote_transaction.RemoteTransactionCallback.SessionOutdatedReason
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RemoteTransactionCallback.SessionOutdatedReason>
- Enclosing interface:
- RemoteTransactionCallback
public static enum RemoteTransactionCallback.SessionOutdatedReason extends java.lang.Enum<RemoteTransactionCallback.SessionOutdatedReason>
TheRemoteTransactionCallback.SessionOutdatedReason
lists possible reasons for a session to be outdated.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RemoteTransactionCallback.SessionOutdatedReason
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RemoteTransactionCallback.SessionOutdatedReason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Expired
public static final RemoteTransactionCallback.SessionOutdatedReason Expired
-
Accepted
public static final RemoteTransactionCallback.SessionOutdatedReason Accepted
-
Refused
public static final RemoteTransactionCallback.SessionOutdatedReason Refused
-
Unknown
public static final RemoteTransactionCallback.SessionOutdatedReason Unknown
-
-
Method Detail
-
values
public static RemoteTransactionCallback.SessionOutdatedReason[] 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 (RemoteTransactionCallback.SessionOutdatedReason c : RemoteTransactionCallback.SessionOutdatedReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RemoteTransactionCallback.SessionOutdatedReason 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
-
-