public static enum AuthenticationResult.AuthenticationStatus extends Enum<AuthenticationResult.AuthenticationStatus>
Enum Constant and Description |
---|
CONTINUE
Authentication not successful due to credentials problem etc
|
ERROR
Problem prevented the authentication from being made e.g.
|
SUCCESS
Authentication successful
|
Modifier and Type | Method and Description |
---|---|
static AuthenticationResult.AuthenticationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationResult.AuthenticationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationResult.AuthenticationStatus SUCCESS
public static final AuthenticationResult.AuthenticationStatus CONTINUE
public static final AuthenticationResult.AuthenticationStatus ERROR
public static AuthenticationResult.AuthenticationStatus[] values()
for (AuthenticationResult.AuthenticationStatus c : AuthenticationResult.AuthenticationStatus.values()) System.out.println(c);
public static AuthenticationResult.AuthenticationStatus 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 © 2006–2016 The Apache Software Foundation. All rights reserved.