public enum AuthenticationFlowError extends Enum<AuthenticationFlowError>
Modifier and Type | Method and Description |
---|---|
static AuthenticationFlowError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationFlowError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationFlowError EXPIRED_CODE
public static final AuthenticationFlowError INVALID_CLIENT_SESSION
public static final AuthenticationFlowError INVALID_USER
public static final AuthenticationFlowError INVALID_CREDENTIALS
public static final AuthenticationFlowError CREDENTIAL_SETUP_REQUIRED
public static final AuthenticationFlowError USER_DISABLED
public static final AuthenticationFlowError USER_CONFLICT
public static final AuthenticationFlowError USER_TEMPORARILY_DISABLED
public static final AuthenticationFlowError INTERNAL_ERROR
public static final AuthenticationFlowError UNKNOWN_USER
public static final AuthenticationFlowError FORK_FLOW
public static final AuthenticationFlowError UNKNOWN_CLIENT
public static final AuthenticationFlowError CLIENT_NOT_FOUND
public static final AuthenticationFlowError CLIENT_DISABLED
public static final AuthenticationFlowError CLIENT_CREDENTIALS_SETUP_REQUIRED
public static final AuthenticationFlowError INVALID_CLIENT_CREDENTIALS
public static final AuthenticationFlowError IDENTITY_PROVIDER_NOT_FOUND
public static final AuthenticationFlowError IDENTITY_PROVIDER_DISABLED
public static final AuthenticationFlowError IDENTITY_PROVIDER_ERROR
public static final AuthenticationFlowError DISPLAY_NOT_SUPPORTED
public static AuthenticationFlowError[] values()
for (AuthenticationFlowError c : AuthenticationFlowError.values()) System.out.println(c);
public static AuthenticationFlowError 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 © 2020 JBoss by Red Hat. All rights reserved.