public static enum LoginResult.Type extends Enum<LoginResult.Type>
Type
describes the result type of a Gateway Login attempt.Enum Constant and Description |
---|
CHALLENGE
Login attempt was not successful, and further authentication may proceed.
|
FAILURE
Login attempt was not successful, and further authentication should not proceed.
|
SUCCESS
Login attempt was successful.
|
Modifier and Type | Method and Description |
---|---|
static LoginResult.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoginResult.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoginResult.Type SUCCESS
public static final LoginResult.Type FAILURE
public static final LoginResult.Type CHALLENGE
public static LoginResult.Type[] values()
for (LoginResult.Type c : LoginResult.Type.values()) System.out.println(c);
public static LoginResult.Type 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 © 2015. All Rights Reserved.