Annotation Interface SecurityRequirementsSets
If this annotation is applied to a method which corresponds to an operation, then the requirements will be added to that operation.
If this annotation is applied to a class which contains methods which correspond to operations, then the requirements will be added to all operations corresponding to methods within that class which don't specify any other requirements.
This annotation may be used with value
set to an empty array. When applied like this to a method or class, it
indicates that no security requirements apply to the corresponding operations. This can be used to override security
requirements which are specified for the whole API.
A SecurityRequirementSets
annotation corresponds to an array of maps of security requirements in an OpenAPI
document.
Example: security: - oauth_implicit: [] http_basic: [] - api_secret: []
- See Also:
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionAn array of SecurityRequirementSet annotations
-
Element Details
-
value
SecurityRequirementsSet[] valueAn array of SecurityRequirementSet annotations- Returns:
- the array of the SecurityRequirementSet annotations
- Default:
- {}
-