Interface AuthorizationServerContract.DefinitionStages.WithTokenBodyParameters
- All Known Subinterfaces:
AuthorizationServerContract.Definition,AuthorizationServerContract.DefinitionStages.WithCreate
- Enclosing interface:
AuthorizationServerContract.DefinitionStages
public static interface AuthorizationServerContract.DefinitionStages.WithTokenBodyParameters
The stage of the AuthorizationServerContract definition allowing to specify tokenBodyParameters.
-
Method Summary
Modifier and TypeMethodDescriptionwithTokenBodyParameters(List<TokenBodyParameterContract> tokenBodyParameters) Specifies the tokenBodyParameters property: Additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e.
-
Method Details
-
withTokenBodyParameters
AuthorizationServerContract.DefinitionStages.WithCreate withTokenBodyParameters(List<TokenBodyParameterContract> tokenBodyParameters) Specifies the tokenBodyParameters property: Additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {"name" : "name value", "value": "a value"}..- Parameters:
tokenBodyParameters- Additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {"name" : "name value", "value": "a value"}.- Returns:
- the next definition stage.
-