Interface AuthorizationServerContract.DefinitionStages.WithDefaultScope
- All Known Subinterfaces:
AuthorizationServerContract.Definition,AuthorizationServerContract.DefinitionStages.WithCreate
- Enclosing interface:
AuthorizationServerContract.DefinitionStages
public static interface AuthorizationServerContract.DefinitionStages.WithDefaultScope
The stage of the AuthorizationServerContract definition allowing to specify defaultScope.
-
Method Summary
Modifier and TypeMethodDescriptionwithDefaultScope(String defaultScope) Specifies the defaultScope property: Access token scope that is going to be requested by default.
-
Method Details
-
withDefaultScope
Specifies the defaultScope property: Access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values..- Parameters:
defaultScope- Access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values.- Returns:
- the next definition stage.
-