Class TaskCommentCollectionResource

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

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

    • TaskCommentCollectionResource

      public TaskCommentCollectionResource()
  • Method Details

    • getComments

      @GetMapping(value="/runtime/tasks/{taskId}/comments", produces="application/json") public List<CommentResponse> getComments(@PathVariable String taskId)
    • createComment

      @PostMapping(value="/runtime/tasks/{taskId}/comments", produces="application/json") @ResponseStatus(CREATED) public CommentResponse createComment(@PathVariable String taskId, @RequestBody CommentRequest comment)