Interface AuthorizationServerContract.DefinitionStages.WithClientAuthenticationMethod
- All Known Subinterfaces:
AuthorizationServerContract.Definition,AuthorizationServerContract.DefinitionStages.WithCreate
- Enclosing interface:
AuthorizationServerContract.DefinitionStages
public static interface AuthorizationServerContract.DefinitionStages.WithClientAuthenticationMethod
The stage of the AuthorizationServerContract definition allowing to specify clientAuthenticationMethod.
-
Method Summary
Modifier and TypeMethodDescriptionwithClientAuthenticationMethod(List<ClientAuthenticationMethod> clientAuthenticationMethod) Specifies the clientAuthenticationMethod property: Method of authentication supported by the token endpoint of this authorization server.
-
Method Details
-
withClientAuthenticationMethod
AuthorizationServerContract.DefinitionStages.WithCreate withClientAuthenticationMethod(List<ClientAuthenticationMethod> clientAuthenticationMethod) Specifies the clientAuthenticationMethod property: Method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format..- Parameters:
clientAuthenticationMethod- Method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format.- Returns:
- the next definition stage.
-