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 ClientAuthMethodBackchannelAuthenticationResponse. getClientAuthMethod()Get the client authentication method that should be performed at the backchannel authentication endpoint.ClientAuthMethodDeviceAuthorizationResponse. getClientAuthMethod()Get the client authentication method that should be performed at the device authorization endpoint.ClientAuthMethodPushedAuthReqResponse. getClientAuthMethod()Get the client authentication method that should be performed at the pushed authorization request endpoint.ClientAuthMethodTokenResponse. 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.ClientAuthMethodClient. 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 BackchannelAuthenticationResponseBackchannelAuthenticationResponse. setClientAuthMethod(ClientAuthMethod method)Set the client authentication method that should be performed at the backchannel authentication endpoint.DeviceAuthorizationResponseDeviceAuthorizationResponse. setClientAuthMethod(ClientAuthMethod method)Set the client authentication method that should be performed at the device authorization endpoint.PushedAuthReqResponsePushedAuthReqResponse. setClientAuthMethod(ClientAuthMethod method)Set the client authentication method that should be performed at the pushed authorization request endpoint.voidTokenResponse. setClientAuthMethod(ClientAuthMethod method)Set the client authentication method that should be performed at the token endpoint.ServiceService. setSupportedIntrospectionAuthMethods(ClientAuthMethod[] methods)Set client authentication methods supported at the introspection endpoint.ServiceService. setSupportedRevocationAuthMethods(ClientAuthMethod[] methods)Set client authentication methods supported at the revocation endpoint.ServiceService. setSupportedTokenAuthMethods(ClientAuthMethod[] methods)Set the number of client authentication methods at the token endpoint.ClientClient. 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 ClientAuthMethodClientAuthMethod. getByValue(short value)Find an instance of this enum by a value.static ClientAuthMethodClientAuthMethod. parse(String method)ConvertStringtoClientAuthMethod.static ClientAuthMethod[]ClientAuthMethod. toArray(int bits)static ClientAuthMethodClientAuthMethod. 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 intClientAuthMethod. toBits(EnumSet<ClientAuthMethod> set)
-