Package com.okta.idx.sdk.api.model
Enum AuthenticationStatus
- java.lang.Object
-
- java.lang.Enum<AuthenticationStatus>
-
- com.okta.idx.sdk.api.model.AuthenticationStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AuthenticationStatus>
public enum AuthenticationStatus extends java.lang.Enum<AuthenticationStatus>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static AuthenticationStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AuthenticationStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final AuthenticationStatus SUCCESS
-
SKIP_COMPLETE
public static final AuthenticationStatus SKIP_COMPLETE
-
PASSWORD_EXPIRED
public static final AuthenticationStatus PASSWORD_EXPIRED
-
AWAITING_USER_EMAIL_ACTIVATION
public static final AuthenticationStatus AWAITING_USER_EMAIL_ACTIVATION
-
AWAITING_AUTHENTICATOR_SELECTION
public static final AuthenticationStatus AWAITING_AUTHENTICATOR_SELECTION
-
AWAITING_AUTHENTICATOR_ENROLLMENT_SELECTION
public static final AuthenticationStatus AWAITING_AUTHENTICATOR_ENROLLMENT_SELECTION
-
AWAITING_AUTHENTICATOR_VERIFICATION
public static final AuthenticationStatus AWAITING_AUTHENTICATOR_VERIFICATION
-
AWAITING_AUTHENTICATOR_VERIFICATION_DATA
public static final AuthenticationStatus AWAITING_AUTHENTICATOR_VERIFICATION_DATA
-
AWAITING_AUTHENTICATOR_ENROLLMENT_DATA
public static final AuthenticationStatus AWAITING_AUTHENTICATOR_ENROLLMENT_DATA
-
AWAITING_PASSWORD_RESET
public static final AuthenticationStatus AWAITING_PASSWORD_RESET
-
AWAITING_PROFILE_ENROLLMENT
public static final AuthenticationStatus AWAITING_PROFILE_ENROLLMENT
-
AWAITING_AUTHENTICATOR_ENROLLMENT
public static final AuthenticationStatus AWAITING_AUTHENTICATOR_ENROLLMENT
-
AWAITING_POLL_ENROLLMENT
public static final AuthenticationStatus AWAITING_POLL_ENROLLMENT
-
AWAITING_CHANNEL_DATA_ENROLLMENT
public static final AuthenticationStatus AWAITING_CHANNEL_DATA_ENROLLMENT
-
AWAITING_CHALLENGE_POLL
public static final AuthenticationStatus AWAITING_CHALLENGE_POLL
-
UNKNOWN
public static final AuthenticationStatus UNKNOWN
-
-
Method Detail
-
values
public static AuthenticationStatus[] 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 (AuthenticationStatus c : AuthenticationStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthenticationStatus 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
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<AuthenticationStatus>
-
-