See: Description
| Annotation Type | Description |
|---|---|
| Contact |
Contact information for the exposed API.
|
| Info |
This annotation provides metadata about the API, and maps to the Info object in OpenAPI Specification 3.
|
| License |
License information for the exposed API.
|
Example usage:
@ApplicationPath("/")
@OpenAPIDefinition(
info = @Info(
title="AirlinesRatingApp API",
version = "1.0",
termsOfService = "http://airlinesratingapp.com/terms",
contact = @Contact(
name = "AirlinesRatingApp API Support",
url = "http://exampleurl.com/contact",
email = "techsupport@airlinesratingapp.com"),
license = @License(
name = "Apache 2.0",
url = "http://www.apache.org/licenses/LICENSE-2.0.html")))