Skip navigation links

Package org.eclipse.microprofile.openapi.annotations.tags

A set of annotations to represent a tag for an API endpoint and a container that encapsulates multiple such tags.

See: Description

Package org.eclipse.microprofile.openapi.annotations.tags Description

A set of annotations to represent a tag for an API endpoint and a container that encapsulates multiple such tags.

Example usage:

  @Path("/reviews")
  @Tags(
  value = {
        @Tag(
              name = "Reviews",
              description = "All the review methods"
              ),
       @Tag(
              name = "Ratings",
              description = "All the ratings methods"
              )
      }
  )
  public class ReviewResource {
  ...
 
Skip navigation links