Class HistoricProcessInstanceCommentResource

    • Constructor Detail

      • HistoricProcessInstanceCommentResource

        public HistoricProcessInstanceCommentResource()
    • Method Detail

      • getComment

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

        @DeleteMapping("/history/historic-process-instances/{processInstanceId}/comments/{commentId}")
        public void deleteComment​(@PathVariable("processInstanceId")
                                  String processInstanceId,
                                  @PathVariable("commentId")
                                  String commentId,
                                  javax.servlet.http.HttpServletRequest request,
                                  javax.servlet.http.HttpServletResponse response)