public static enum APIConstants.AuthenticationResponseType extends java.lang.Enum<APIConstants.AuthenticationResponseType>
Enum Constant and Description |
---|
ACCOUNT_EXPIRED |
AUTHENTICATION_ERROR |
AUTHENTICATION_NOT_AVAILABLE |
BAD_CREDENTIALS |
CREDENTIALS_EXPIRED |
DISABLED |
LICENCE_EVALUATION_EXPIRED |
LOCKED |
SUCCESS |
USER_NEED_TO_LOGIN_FROM_WEB |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getMessage() |
static APIConstants.AuthenticationResponseType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static APIConstants.AuthenticationResponseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final APIConstants.AuthenticationResponseType SUCCESS
public static final APIConstants.AuthenticationResponseType BAD_CREDENTIALS
public static final APIConstants.AuthenticationResponseType LOCKED
public static final APIConstants.AuthenticationResponseType DISABLED
public static final APIConstants.AuthenticationResponseType CREDENTIALS_EXPIRED
public static final APIConstants.AuthenticationResponseType ACCOUNT_EXPIRED
public static final APIConstants.AuthenticationResponseType AUTHENTICATION_ERROR
public static final APIConstants.AuthenticationResponseType AUTHENTICATION_NOT_AVAILABLE
public static final APIConstants.AuthenticationResponseType USER_NEED_TO_LOGIN_FROM_WEB
public static final APIConstants.AuthenticationResponseType LICENCE_EVALUATION_EXPIRED
public static APIConstants.AuthenticationResponseType[] values()
for (APIConstants.AuthenticationResponseType c : APIConstants.AuthenticationResponseType.values()) System.out.println(c);
public static APIConstants.AuthenticationResponseType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getMessage()