public enum AuthenticationResult extends Enum<AuthenticationResult>
| Enum Constant and Description |
|---|
FAILURE
The server rejected the authentication request.
|
PARTIAL_SUCCESS
The authentication request to which this is a response was successful, however, more
authentication requests are needed (multi-method authentication sequence).
|
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationResult SUCCESS
public static final AuthenticationResult PARTIAL_SUCCESS
public static final AuthenticationResult FAILURE
public static AuthenticationResult[] values()
for (AuthenticationResult c : AuthenticationResult.values()) System.out.println(c);
public static AuthenticationResult 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 © 2014. All Rights Reserved.