@Retention(value=RUNTIME)
@Target(value={TYPE,METHOD})
@Inherited
public @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: []
Modifier and Type | Optional Element and Description |
---|---|
SecurityRequirementsSet[] |
value
An array of SecurityRequirementSet annotations
|
public abstract SecurityRequirementsSet[] value