Class ExecutionResource

java.lang.Object
org.flowable.rest.service.api.runtime.process.ExecutionBaseResource
org.flowable.rest.service.api.runtime.process.ExecutionResource

@RestController public class ExecutionResource extends ExecutionBaseResource
Author:
Frederik Heremans
  • Constructor Details

    • ExecutionResource

      public ExecutionResource()
  • Method Details

    • getExecution

      @GetMapping(value="/runtime/executions/{executionId}", produces="application/json") public ExecutionResponse getExecution(@PathVariable String executionId)
    • performExecutionAction

      @PutMapping(value="/runtime/executions/{executionId}", produces="application/json") public ExecutionResponse performExecutionAction(@PathVariable String executionId, @RequestBody ExecutionActionRequest actionRequest, jakarta.servlet.http.HttpServletResponse response)
    • changeActivityState

      @PostMapping(value="/runtime/executions/{executionId}/change-state", produces="application/json") public void changeActivityState(@PathVariable String executionId, @RequestBody ExecutionChangeActivityStateRequest activityStateRequest)