Class ExecutionResource
java.lang.Object
org.flowable.rest.service.api.runtime.process.ExecutionBaseResource
org.flowable.rest.service.api.runtime.process.ExecutionResource
- Author:
- Frederik Heremans
-
Field Summary
Fields inherited from class org.flowable.rest.service.api.runtime.process.ExecutionBaseResource
restApiInterceptor, restResponseFactory, runtimeService
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
changeActivityState
(String executionId, ExecutionChangeActivityStateRequest activityStateRequest) getExecution
(String executionId) performExecutionAction
(String executionId, ExecutionActionRequest actionRequest, jakarta.servlet.http.HttpServletResponse response) Methods inherited from class org.flowable.rest.service.api.runtime.process.ExecutionBaseResource
addVariables, getExecutionFromRequest, getQueryResponse, getVariablesToSet
-
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)
-