@Version("1.1") @ProviderType
Package org.eclipse.microprofile.openapi.annotations.security
A set of annotations to represent various security components of an OpenAPI app.
Example usage:
@Path("/reviews")
@SecurityScheme(
securitySchemeName = "reviewoauth2",
type = SecuritySchemeType.OAUTH2,
description = "authentication needed to create and delete reviews",
flows = @OAuthFlows(
implicit = @OAuthFlow(
authorizationUrl = "https://example.com/api/oauth/dialog",
scopes = @OAuthScope(
name = "write:reviews",
description = "create a review"
)
)
)
)
-
Annotation Types Summary Annotation Type Description OAuthFlow Configuration details for a supported OAuth Flow.OAuthFlows Allows configuration of the supported OAuth Flows.OAuthScope Represents an OAuth scope.SecurityRequirement Specifies a security requirement for an operation.SecurityRequirements Container annotation for repeatedSecurityRequirementannotations.SecurityRequirementsSet This annotation represents a set of security requirements which permit access to an operation if all of them are satisfied.SecurityRequirementsSets Represents an array of security requirement sets that apply to an operation.SecurityScheme Defines a security scheme that can be used by the operations.SecuritySchemes This object represents an array of SecurityScheme annotations that can be specified at the definition level.