Class HistoricTaskInstanceResource

java.lang.Object
org.flowable.cmmn.rest.service.api.history.task.HistoricTaskInstanceBaseResource
org.flowable.cmmn.rest.service.api.history.task.HistoricTaskInstanceResource

@RestController public class HistoricTaskInstanceResource extends HistoricTaskInstanceBaseResource
Author:
Tijs Rademakers
  • Field Details

    • restResponseFactory

      @Autowired protected CmmnRestResponseFactory restResponseFactory
    • historyService

      @Autowired protected org.flowable.cmmn.api.CmmnHistoryService historyService
    • taskService

      @Autowired protected org.flowable.cmmn.api.CmmnTaskService taskService
    • formHandlerRestApiInterceptor

      @Autowired(required=false) protected CmmnFormHandlerRestApiInterceptor formHandlerRestApiInterceptor
  • Constructor Details

    • HistoricTaskInstanceResource

      public HistoricTaskInstanceResource()
  • Method Details

    • getTaskInstance

      @GetMapping(value="/cmmn-history/historic-task-instances/{taskId}", produces="application/json") public HistoricTaskInstanceResponse getTaskInstance(@PathVariable String taskId)
    • deleteTaskInstance

      @DeleteMapping("/cmmn-history/historic-task-instances/{taskId}") @ResponseStatus(NO_CONTENT) public void deleteTaskInstance(@PathVariable String taskId)
    • getTaskForm

      @GetMapping(value="/cmmn-history/historic-task-instances/{taskId}/form", produces="application/json") public String getTaskForm(@PathVariable String taskId)