Uses of Interface
org.eclipse.microprofile.openapi.models.security.SecurityRequirement
Packages that use SecurityRequirement
Package
Description
A set of Java interfaces, annotations and programming models which allow Java developers to natively produce OpenAPI
v3.1 documents from their Jakarta REST applications.
A set of interfaces for programmable models and their helper classes, many derived from Swagger Core library.
A set of model interfaces to represent various security components of an OpenAPI app.
-
Uses of SecurityRequirement in org.eclipse.microprofile.openapi
Methods in org.eclipse.microprofile.openapi that return SecurityRequirementModifier and TypeMethodDescriptionstatic SecurityRequirementOASFactory.createSecurityRequirement()This method creates a newSecurityRequirementinstance. -
Uses of SecurityRequirement in org.eclipse.microprofile.openapi.models
Methods in org.eclipse.microprofile.openapi.models that return types with arguments of type SecurityRequirementModifier and TypeMethodDescriptionOpenAPI.getSecurity()Returns the security property from an OpenAPI instance.Operation.getSecurity()Returns the security property from an Operation instance.Methods in org.eclipse.microprofile.openapi.models with parameters of type SecurityRequirementModifier and TypeMethodDescriptionOpenAPI.addSecurityRequirement(SecurityRequirement securityRequirement) Adds the given security requirement to this OpenAPI instance's list of security requirements.Operation.addSecurityRequirement(SecurityRequirement securityRequirement) Adds the given security requirement item to this Operation's list of security mechanisms.voidOpenAPI.removeSecurityRequirement(SecurityRequirement securityRequirement) Removes the given security requirement to this OpenAPI instance's list of security requirements.voidOperation.removeSecurityRequirement(SecurityRequirement securityRequirement) Removes the given security requirement item to this Operation's list of security mechanisms.Method parameters in org.eclipse.microprofile.openapi.models with type arguments of type SecurityRequirementModifier and TypeMethodDescriptiondefault OpenAPIOpenAPI.security(List<SecurityRequirement> security) Sets this OpenAPI instance's security property to the given list.default OperationOperation.security(List<SecurityRequirement> security) Sets this Operation's security property to the given list.voidOpenAPI.setSecurity(List<SecurityRequirement> security) Sets this OpenAPI instance's security property to the given list.voidOperation.setSecurity(List<SecurityRequirement> security) Sets this Operation's security property to the given list. -
Uses of SecurityRequirement in org.eclipse.microprofile.openapi.models.security
Methods in org.eclipse.microprofile.openapi.models.security that return SecurityRequirementModifier and TypeMethodDescriptionAdds a security scheme to the SecurityRequirement instance based on the scheme name.Adds a security scheme to the SecurityRequirement instance based on the scheme name and required scope (optional) provided.Adds a security scheme to the SecurityRequirement instance based on the scheme name and required scopes (optional) provided.