Interface AuthorizationServerContract.DefinitionStages.WithAuthorizationMethods
- All Known Subinterfaces:
AuthorizationServerContract.Definition,AuthorizationServerContract.DefinitionStages.WithCreate
- Enclosing interface:
AuthorizationServerContract.DefinitionStages
public static interface AuthorizationServerContract.DefinitionStages.WithAuthorizationMethods
The stage of the AuthorizationServerContract definition allowing to specify authorizationMethods.
-
Method Summary
Modifier and TypeMethodDescriptionwithAuthorizationMethods(List<AuthorizationMethod> authorizationMethods) Specifies the authorizationMethods property: HTTP verbs supported by the authorization endpoint.
-
Method Details
-
withAuthorizationMethods
AuthorizationServerContract.DefinitionStages.WithCreate withAuthorizationMethods(List<AuthorizationMethod> authorizationMethods) Specifies the authorizationMethods property: HTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional..- Parameters:
authorizationMethods- HTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional.- Returns:
- the next definition stage.
-