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 Summary
FieldsModifier and TypeFieldDescriptionprotected HistoryService
protected RestResponseFactory
protected TaskService
Fields inherited from class org.flowable.rest.service.api.history.HistoricProcessInstanceBaseResource
repositoryService, restApiInterceptor
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
deleteComment
(String processInstanceId, String commentId) getComment
(String processInstanceId, String commentId) Methods inherited from class org.flowable.rest.service.api.history.HistoricProcessInstanceBaseResource
addVariables, getHistoricProcessInstanceFromRequest, getHistoricProcessInstanceFromRequestWithoutAccessCheck, getQueryResponse
-
Field Details
-
restResponseFactory
-
historyService
-
taskService
-
-
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)
-