Class ExecutionResource

    • Constructor Detail

      • ExecutionResource

        public ExecutionResource()
    • Method Detail

      • getExecution

        @GetMapping(value="/runtime/executions/{executionId}",
                    produces="application/json")
        public ExecutionResponse getExecution​(@PathVariable
                                              String executionId,
                                              javax.servlet.http.HttpServletRequest request)
      • performExecutionAction

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

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