Esempio n. 1
0
 @GET
 @Path("/{commentId}")
 public Comment getComment(
     @PathParam("messageId") long messageId, @PathParam("commentId") long commentId) {
   return commentService.getComment(messageId, commentId);
 }