Class TaskCommentResource


  • @RestController
    public class TaskCommentResource
    extends TaskBaseResource
    Author:
    Frederik Heremans
    • Constructor Detail

      • TaskCommentResource

        public TaskCommentResource()
    • Method Detail

      • getComment

        @GetMapping(value="/runtime/tasks/{taskId}/comments/{commentId}",
                    produces="application/json")
        public CommentResponse getComment​(@PathVariable("taskId")
                                          String taskId,
                                          @PathVariable("commentId")
                                          String commentId,
                                          javax.servlet.http.HttpServletRequest request)
      • deleteComment

        @DeleteMapping("/runtime/tasks/{taskId}/comments/{commentId}")
        public void deleteComment​(@PathVariable("taskId")
                                  String taskId,
                                  @PathVariable("commentId")
                                  String commentId,
                                  javax.servlet.http.HttpServletResponse response)