Package com.pingidentity.sdk
Enum AuthnAdapterResponse.AUTHN_STATUS
- java.lang.Object
-
- java.lang.Enum<AuthnAdapterResponse.AUTHN_STATUS>
-
- com.pingidentity.sdk.AuthnAdapterResponse.AUTHN_STATUS
-
- All Implemented Interfaces:
Serializable,Comparable<AuthnAdapterResponse.AUTHN_STATUS>
- Enclosing class:
- AuthnAdapterResponse
public static enum AuthnAdapterResponse.AUTHN_STATUS extends Enum<AuthnAdapterResponse.AUTHN_STATUS>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIONFAILUREIN_PROGRESSINTERACTION_REQUIREDSUCCESS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AuthnAdapterResponse.AUTHN_STATUSvalueOf(String name)Returns the enum constant of this type with the specified name.static AuthnAdapterResponse.AUTHN_STATUS[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final AuthnAdapterResponse.AUTHN_STATUS SUCCESS
-
IN_PROGRESS
public static final AuthnAdapterResponse.AUTHN_STATUS IN_PROGRESS
-
FAILURE
public static final AuthnAdapterResponse.AUTHN_STATUS FAILURE
-
ACTION
public static final AuthnAdapterResponse.AUTHN_STATUS ACTION
-
INTERACTION_REQUIRED
public static final AuthnAdapterResponse.AUTHN_STATUS INTERACTION_REQUIRED
-
-
Method Detail
-
values
public static AuthnAdapterResponse.AUTHN_STATUS[] 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 (AuthnAdapterResponse.AUTHN_STATUS c : AuthnAdapterResponse.AUTHN_STATUS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthnAdapterResponse.AUTHN_STATUS valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-