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