Enum RemoteAuthenticationCallback.SessionOutdatedReason
- java.lang.Object
-
- java.lang.Enum<RemoteAuthenticationCallback.SessionOutdatedReason>
-
- com.vasco.orchestration.client.flows.remote_authentication.RemoteAuthenticationCallback.SessionOutdatedReason
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RemoteAuthenticationCallback.SessionOutdatedReason>
- Enclosing interface:
- RemoteAuthenticationCallback
public static enum RemoteAuthenticationCallback.SessionOutdatedReason extends java.lang.Enum<RemoteAuthenticationCallback.SessionOutdatedReason>
TheRemoteAuthenticationCallback.SessionOutdatedReason
lists possible reasons for a session to be outdated.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RemoteAuthenticationCallback.SessionOutdatedReason
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RemoteAuthenticationCallback.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 RemoteAuthenticationCallback.SessionOutdatedReason Expired
-
Accepted
public static final RemoteAuthenticationCallback.SessionOutdatedReason Accepted
-
Refused
public static final RemoteAuthenticationCallback.SessionOutdatedReason Refused
-
Unknown
public static final RemoteAuthenticationCallback.SessionOutdatedReason Unknown
-
-
Method Detail
-
values
public static RemoteAuthenticationCallback.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 (RemoteAuthenticationCallback.SessionOutdatedReason c : RemoteAuthenticationCallback.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 RemoteAuthenticationCallback.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
-
-