public enum PromptType extends 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(String key) |
static PromptType |
valueOf(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(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 static PromptType fromString(String key)
Copyright © 2019. All rights reserved.