Interface AuthorizationServerContract.UpdateStages.WithTokenBodyParameters
- All Known Subinterfaces:
AuthorizationServerContract.Update
- Enclosing interface:
AuthorizationServerContract.UpdateStages
public static interface AuthorizationServerContract.UpdateStages.WithTokenBodyParameters
The stage of the AuthorizationServerContract update 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.Update 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.
-