Uses of Class
com.authlete.common.types.ResponseType
-
Packages that use ResponseType 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 ResponseType in com.authlete.common.dto
Methods in com.authlete.common.dto that return ResponseType Modifier and Type Method Description ResponseType[]
Client. getResponseTypes()
Getresponse_type
values that the client is declaring that it will restrict itself to using.ResponseType[]
Service. getSupportedResponseTypes()
Get the supported response types.Methods in com.authlete.common.dto with parameters of type ResponseType Modifier and Type Method Description Client
Client. setResponseTypes(ResponseType[] responseTypes)
Setresponse_type
values that the client is declaring that it will restrict itself to using.Service
Service. setSupportedResponseTypes(ResponseType[] responseTypes)
Set the supported response types. -
Uses of ResponseType in com.authlete.common.types
Methods in com.authlete.common.types that return ResponseType Modifier and Type Method Description static ResponseType
ResponseType. getByValue(short value)
Find an instance of this enum by a value.static ResponseType
ResponseType. parse(String responseType)
Parse a space-separatedresponse_type
values.static ResponseType[]
ResponseType. toArray(int bits)
static ResponseType
ResponseType. valueOf(String name)
Returns the enum constant of this type with the specified name.static ResponseType[]
ResponseType. 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 ResponseType Modifier and Type Method Description static EnumSet<ResponseType>
ResponseType. toSet(int bits)
static EnumSet<ResponseType>
ResponseType. toSet(ResponseType[] array)
Methods in com.authlete.common.types with parameters of type ResponseType Modifier and Type Method Description static EnumSet<ResponseType>
ResponseType. toSet(ResponseType[] array)
Method parameters in com.authlete.common.types with type arguments of type ResponseType Modifier and Type Method Description static int
ResponseType. toBits(EnumSet<ResponseType> set)
-