public enum AuthenticationOutcome extends Enum<AuthenticationOutcome>
Modifier and Type | Method and Description |
---|---|
int |
intValue() |
static AuthenticationOutcome |
valueOf(int i) |
static AuthenticationOutcome |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationOutcome OK
public static final AuthenticationOutcome USER_NOT_FOUND
public static final AuthenticationOutcome INVALID_PASSWORD
public static final AuthenticationOutcome ACCOUNT_DEACTIVATED
public static final AuthenticationOutcome SESSION_EXPIRED
public static final AuthenticationOutcome DOMAIN_NOT_FOUND
public static final AuthenticationOutcome WORKAREA_NOT_FOUND
public static final AuthenticationOutcome WORKAREA_NOT_SET
public static final AuthenticationOutcome ACCOUNT_CANCELLED
public static final AuthenticationOutcome PASSWORD_EXPIRED
public static final AuthenticationOutcome CAPTCHA_MISMATCH
public static final AuthenticationOutcome CAPTCHA_TIMEOUT
public static final AuthenticationOutcome WORKAREA_ACCESS_DENIED
public static final AuthenticationOutcome ACCOUNT_UNCONFIRMED
public static final AuthenticationOutcome INVALID_KEY
public static final AuthenticationOutcome INTERNAL_ERROR
public static AuthenticationOutcome[] values()
for (AuthenticationOutcome c : AuthenticationOutcome.values()) System.out.println(c);
public static AuthenticationOutcome 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 nullpublic final int intValue()
public static AuthenticationOutcome valueOf(int i) throws IllegalArgumentException
IllegalArgumentException
Copyright © 2001–2019 KnowGate. All rights reserved.