Uses of Class
com.authlete.common.types.TokenType
-
Packages that use TokenType 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. -
-
Uses of TokenType in com.authlete.common.dto
Methods in com.authlete.common.dto that return TokenType Modifier and Type Method Description TokenType
TokenResponse. getActorTokenType()
Get the value of theactor_token_type
request parameter.TokenType
TokenResponse. getRequestedTokenType()
Get the value of therequested_token_type
request parameter.TokenType
TokenResponse. getSubjectTokenType()
Get the value of thesubject_token_type
request parameter.Methods in com.authlete.common.dto with parameters of type TokenType Modifier and Type Method Description void
TokenResponse. setActorTokenType(TokenType tokenType)
Set the value of theactor_token_type
request parameter.void
TokenResponse. setRequestedTokenType(TokenType tokenType)
Set the value of therequested_token_type
request parameter.void
TokenResponse. setSubjectTokenType(TokenType tokenType)
Set the value of thesubject_token_type
request parameter. -
Uses of TokenType in com.authlete.common.types
Methods in com.authlete.common.types that return TokenType Modifier and Type Method Description static TokenType
TokenType. getByValue(short value)
Find an instance of this enum by a value.static TokenType
TokenType. parse(String tokenType)
ConvertString
toTokenType
.static TokenType[]
TokenType. toArray(int bits)
static TokenType
TokenType. valueOf(String name)
Returns the enum constant of this type with the specified name.static TokenType[]
TokenType. 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 TokenType Modifier and Type Method Description static EnumSet<TokenType>
TokenType. toSet(int bits)
static EnumSet<TokenType>
TokenType. toSet(TokenType[] array)
Methods in com.authlete.common.types with parameters of type TokenType Modifier and Type Method Description static EnumSet<TokenType>
TokenType. toSet(TokenType[] array)
Method parameters in com.authlete.common.types with type arguments of type TokenType Modifier and Type Method Description static int
TokenType. toBits(EnumSet<TokenType> set)
-