public static enum AuthenticationProviderException.ErrorCode extends java.lang.Enum<AuthenticationProviderException.ErrorCode>
Enum Constant and Description |
---|
AUTHENTICATION_FAILURE
Error code to report application authentication failure.
|
AUTHORIZATION_FAILURE
Error code to report application authorization failure.
|
Modifier and Type | Method and Description |
---|---|
static AuthenticationProviderException.ErrorCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationProviderException.ErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationProviderException.ErrorCode AUTHENTICATION_FAILURE
public static final AuthenticationProviderException.ErrorCode AUTHORIZATION_FAILURE
public static AuthenticationProviderException.ErrorCode[] values()
for (AuthenticationProviderException.ErrorCode c : AuthenticationProviderException.ErrorCode.values()) System.out.println(c);
public static AuthenticationProviderException.ErrorCode 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 nullCopyright (c) 2014, Oracle and/or its affiliates. All rights reserved.