public enum AuthenticationErrorType extends Enum<AuthenticationErrorType>
Currently this is just used to indicate if a remote communication error has occurred (eg with LDAP server).
| Enum Constant and Description |
|---|
CommunicationError |
UnknownError |
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationErrorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationErrorType CommunicationError
public static final AuthenticationErrorType UnknownError
public static AuthenticationErrorType[] values()
for (AuthenticationErrorType c : AuthenticationErrorType.values()) System.out.println(c);
public static AuthenticationErrorType 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 © 2018 Atlassian. All rights reserved.