public static enum LoginProtocol.Error extends Enum<LoginProtocol.Error>
Enum Constant and Description |
---|
CANCELLED_AIA
Applications-initiated action was canceled by the user
|
CANCELLED_AIA_SILENT
Applications-initiated action was canceled by the user.
|
CANCELLED_BY_USER
Login cancelled by the user
|
CONSENT_DENIED
Consent denied by the user
|
PASSIVE_INTERACTION_REQUIRED
Passive authentication mode requested, user is logged in, but some other user interaction is necessary (eg.
|
PASSIVE_LOGIN_REQUIRED
Passive authentication mode requested but nobody is logged in
|
Modifier and Type | Method and Description |
---|---|
static LoginProtocol.Error |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoginProtocol.Error[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoginProtocol.Error CANCELLED_BY_USER
public static final LoginProtocol.Error CANCELLED_AIA
public static final LoginProtocol.Error CANCELLED_AIA_SILENT
public static final LoginProtocol.Error CONSENT_DENIED
public static final LoginProtocol.Error PASSIVE_LOGIN_REQUIRED
public static final LoginProtocol.Error PASSIVE_INTERACTION_REQUIRED
public static LoginProtocol.Error[] values()
for (LoginProtocol.Error c : LoginProtocol.Error.values()) System.out.println(c);
public static LoginProtocol.Error 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.