Skip to content

Commit

Permalink
Add Javadoc comment to new example method
Browse files Browse the repository at this point in the history
  • Loading branch information
tjquinno committed Oct 20, 2024
1 parent 370dd1a commit 1c1b78b
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,11 @@ public Response updateGreeting(GreetingMessage message) {
return Response.status(Response.Status.NO_CONTENT).build();
}

/**
* Simplistic method to return a type from outside this project.
*
* @return {@link jakarta.ws.rs.core.MediaType}
*/
@Path("/mediatype")
@GET
@Produces(MediaType.APPLICATION_JSON)
Expand Down

0 comments on commit 1c1b78b

Please sign in to comment.