Interface ProcessInstanceVariableController


  • @RequestMapping(value="/v1/process-instances/{processInstanceId}/variables",
                    produces={"application/hal+json","application/json"})
    public interface ProcessInstanceVariableController
    • Method Detail

      • getVariables

        @RequestMapping(method=GET)
        org.springframework.hateoas.CollectionModel<org.springframework.hateoas.EntityModel<CloudVariableInstance>> getVariables​(@PathVariable
                                                                                                                                 String processInstanceId)
      • setVariables

        @RequestMapping(method=POST)
        org.springframework.http.ResponseEntity<Void> setVariables​(@PathVariable
                                                                   String processInstanceId,
                                                                   @RequestBody
                                                                   org.activiti.api.process.model.payloads.SetProcessVariablesPayload setProcessVariablesPayload)