Uses of Class
com.authlete.common.types.ClientAuthMethod
-
Packages that use ClientAuthMethod 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 ClientAuthMethod in com.authlete.common.dto
Methods in com.authlete.common.dto that return ClientAuthMethod Modifier and Type Method Description ClientAuthMethod
BackchannelAuthenticationResponse. getClientAuthMethod()
Get the client authentication method that should be performed at the backchannel authentication endpoint.ClientAuthMethod
DeviceAuthorizationResponse. getClientAuthMethod()
Get the client authentication method that should be performed at the device authorization endpoint.ClientAuthMethod
PushedAuthReqResponse. getClientAuthMethod()
Get the client authentication method that should be performed at the pushed authorization request endpoint.ClientAuthMethod
TokenResponse. getClientAuthMethod()
Get the client authentication method that should be performed at the token endpoint.ClientAuthMethod[]
Service. getSupportedIntrospectionAuthMethods()
Get client authentication methods supported at the introspection endpoint.ClientAuthMethod[]
Service. getSupportedRevocationAuthMethods()
Get client authentication methods supported at the revocation endpoint.ClientAuthMethod[]
Service. getSupportedTokenAuthMethods()
Get the supported client authentication methods at the token endpoint.ClientAuthMethod
Client. getTokenAuthMethod()
Get the client authentication method for the token endpoint.Methods in com.authlete.common.dto with parameters of type ClientAuthMethod Modifier and Type Method Description BackchannelAuthenticationResponse
BackchannelAuthenticationResponse. setClientAuthMethod(ClientAuthMethod method)
Set the client authentication method that should be performed at the backchannel authentication endpoint.DeviceAuthorizationResponse
DeviceAuthorizationResponse. setClientAuthMethod(ClientAuthMethod method)
Set the client authentication method that should be performed at the device authorization endpoint.PushedAuthReqResponse
PushedAuthReqResponse. setClientAuthMethod(ClientAuthMethod method)
Set the client authentication method that should be performed at the pushed authorization request endpoint.void
TokenResponse. setClientAuthMethod(ClientAuthMethod method)
Set the client authentication method that should be performed at the token endpoint.Service
Service. setSupportedIntrospectionAuthMethods(ClientAuthMethod[] methods)
Set client authentication methods supported at the introspection endpoint.Service
Service. setSupportedRevocationAuthMethods(ClientAuthMethod[] methods)
Set client authentication methods supported at the revocation endpoint.Service
Service. setSupportedTokenAuthMethods(ClientAuthMethod[] methods)
Set the number of client authentication methods at the token endpoint.Client
Client. setTokenAuthMethod(ClientAuthMethod method)
Set the client authentication method for the token endpoint. -
Uses of ClientAuthMethod in com.authlete.common.types
Methods in com.authlete.common.types that return ClientAuthMethod Modifier and Type Method Description static ClientAuthMethod
ClientAuthMethod. getByValue(short value)
Find an instance of this enum by a value.static ClientAuthMethod
ClientAuthMethod. parse(String method)
ConvertString
toClientAuthMethod
.static ClientAuthMethod[]
ClientAuthMethod. toArray(int bits)
static ClientAuthMethod
ClientAuthMethod. valueOf(String name)
Returns the enum constant of this type with the specified name.static ClientAuthMethod[]
ClientAuthMethod. 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 ClientAuthMethod Modifier and Type Method Description static EnumSet<ClientAuthMethod>
ClientAuthMethod. toSet(int bits)
static EnumSet<ClientAuthMethod>
ClientAuthMethod. toSet(ClientAuthMethod[] array)
Methods in com.authlete.common.types with parameters of type ClientAuthMethod Modifier and Type Method Description static EnumSet<ClientAuthMethod>
ClientAuthMethod. toSet(ClientAuthMethod[] array)
Method parameters in com.authlete.common.types with type arguments of type ClientAuthMethod Modifier and Type Method Description static int
ClientAuthMethod. toBits(EnumSet<ClientAuthMethod> set)
-