Uses of Class
com.authlete.common.types.Prompt
-
Packages that use Prompt Package Description com.authlete.common.dto Requests to and responses from Authlete APIs and some data structures.com.authlete.common.types Enum definitions and lists of pre-defined constants.com.authlete.common.util Utility classes. -
-
Uses of Prompt in com.authlete.common.dto
Methods in com.authlete.common.dto that return Prompt Modifier and Type Method Description Prompt
AuthorizationResponse. getLowestPrompt()
Deprecated.Prompt[]
AuthorizationResponse. getPrompts()
Get the list of prompts contained in the authorization request (= the value ofprompt
request parameter).Prompt[]
Service. getSupportedPromptValues()
Get the supportedprompt
values.Methods in com.authlete.common.dto with parameters of type Prompt Modifier and Type Method Description void
AuthorizationResponse. setLowestPrompt(Prompt prompt)
Set the prompt that the UI displayed to the end-user must satisfy at least.void
AuthorizationResponse. setPrompts(Prompt[] prompts)
Set the list of prompts contained in the authorization request (= the value ofprompt
request parameter).Service
Service. setSupportedPromptValues(Prompt[] promptValues)
Set the supportedprompt
values. -
Uses of Prompt in com.authlete.common.types
Methods in com.authlete.common.types that return Prompt Modifier and Type Method Description static Prompt
Prompt. getByValue(short value)
Find an instance of this enum by a value.static Prompt
Prompt. parse(String prompt)
ConvertString
toPrompt
.static Prompt[]
Prompt. toArray(int bits)
static Prompt
Prompt. valueOf(String name)
Returns the enum constant of this type with the specified name.static Prompt[]
Prompt. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.authlete.common.types that return types with arguments of type Prompt Modifier and Type Method Description static EnumSet<Prompt>
Prompt. toSet(int bits)
static EnumSet<Prompt>
Prompt. toSet(Prompt[] array)
Methods in com.authlete.common.types with parameters of type Prompt Modifier and Type Method Description static EnumSet<Prompt>
Prompt. toSet(Prompt[] array)
Method parameters in com.authlete.common.types with type arguments of type Prompt Modifier and Type Method Description static int
Prompt. toBits(EnumSet<Prompt> set)
-
Uses of Prompt in com.authlete.common.util
Methods in com.authlete.common.util with parameters of type Prompt Modifier and Type Method Description static String
Utils. stringifyPrompts(Prompt[] prompts)
Stringify an array ofPrompt
.
-