public enum AuthenticationExceptionCause extends java.lang.Enum<AuthenticationExceptionCause>
AuthenticationException to specify the cause of the exception.| Enum Constant and Description |
|---|
AUTHENTICATION_EXPIRED
The Provider is unable to perform the requested operation because credentials have expired.
|
UNAUTHENTICATED
The application is not logged in to perform this operation.
|
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationExceptionCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationExceptionCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationExceptionCause AUTHENTICATION_EXPIRED
Resolution: The application should log in with valid credentials and retry.
public static final AuthenticationExceptionCause UNAUTHENTICATED
Resolution: The application should log in first and retry.
public static AuthenticationExceptionCause[] values()
for (AuthenticationExceptionCause c : AuthenticationExceptionCause.values()) System.out.println(c);
public static AuthenticationExceptionCause 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 null