@DELETE
 @Path("/{commentId}")
 public Comment deleteComment(
     @PathParam("messageId") long messageId, @PathParam("commentId") long commentId) {
   return commentService.removeComment(messageId, commentId);
 }