Class HistoricProcessInstanceCommentResource

java.lang.Object
org.flowable.rest.service.api.history.HistoricProcessInstanceBaseResource
org.flowable.rest.service.api.history.HistoricProcessInstanceCommentResource

@RestController public class HistoricProcessInstanceCommentResource extends HistoricProcessInstanceBaseResource
Author:
Frederik Heremans
  • Field Details

  • Constructor Details

    • HistoricProcessInstanceCommentResource

      public HistoricProcessInstanceCommentResource()
  • Method Details

    • getComment

      @GetMapping(value="/history/historic-process-instances/{processInstanceId}/comments/{commentId}", produces="application/json") public CommentResponse getComment(@PathVariable("processInstanceId") String processInstanceId, @PathVariable("commentId") String commentId)
    • deleteComment

      @DeleteMapping("/history/historic-process-instances/{processInstanceId}/comments/{commentId}") @ResponseStatus(NO_CONTENT) public void deleteComment(@PathVariable("processInstanceId") String processInstanceId, @PathVariable("commentId") String commentId)