Class TaskCommentResource

java.lang.Object
org.flowable.rest.service.api.runtime.task.TaskBaseResource
org.flowable.rest.service.api.runtime.task.TaskCommentResource

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

    • TaskCommentResource

      public TaskCommentResource()
  • Method Details

    • getComment

      @GetMapping(value="/runtime/tasks/{taskId}/comments/{commentId}", produces="application/json") public CommentResponse getComment(@PathVariable("taskId") String taskId, @PathVariable("commentId") String commentId)
    • deleteComment

      @DeleteMapping("/runtime/tasks/{taskId}/comments/{commentId}") @ResponseStatus(NO_CONTENT) public void deleteComment(@PathVariable("taskId") String taskId, @PathVariable("commentId") String commentId)