public enum AuthenticationResultCode extends Enum<AuthenticationResultCode>
Enum Constant and Description |
---|
AUTHENTICATION_HANDLER_FAILURE
The configured authentication handler produced a result of false.
|
AUTHENTICATION_HANDLER_SUCCESS
The configured authentication handler produced a result of true.
|
DN_RESOLUTION_FAILURE
The configured DN resolver produced an empty or null value.
|
INVALID_CREDENTIAL
The supplied credential was empty or null.
|
Modifier and Type | Method and Description |
---|---|
static AuthenticationResultCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationResultCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationResultCode AUTHENTICATION_HANDLER_SUCCESS
public static final AuthenticationResultCode AUTHENTICATION_HANDLER_FAILURE
public static final AuthenticationResultCode INVALID_CREDENTIAL
public static final AuthenticationResultCode DN_RESOLUTION_FAILURE
public static AuthenticationResultCode[] values()
for (AuthenticationResultCode c : AuthenticationResultCode.values()) System.out.println(c);
public static AuthenticationResultCode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2003-2019 Virginia Tech. All Rights Reserved.