public enum PromptType extends java.lang.Enum<PromptType>
Enum Constant and Description |
---|
CONSENT
The Authorization Server SHOULD prompt the End-User for consent before
returning information to the Client.
|
LOGIN
The Authorization Server SHOULD prompt the End-User for reauthentication.
|
NONE
The Authorization Server must not display any authentication or consent
user interface pages.
|
SELECT_ACCOUNT
The Authorization Server SHOULD prompt the End-User to select a user
account.
|
Modifier and Type | Method and Description |
---|---|
static PromptType |
fromString(java.lang.String key) |
static PromptType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PromptType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PromptType NONE
public static final PromptType LOGIN
public static final PromptType CONSENT
public static final PromptType SELECT_ACCOUNT
public static PromptType[] values()
for (PromptType c : PromptType.values()) System.out.println(c);
public static PromptType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static PromptType fromString(java.lang.String key)