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


@Version("1.0") 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.

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 {
  ...
 
  • Annotation Interfaces
    Class
    Description
    This object represents a tag.
    The Tags annotation is a container for @Tag annotations.