Class ProcessInstanceVariableResource

    • Field Detail

      • objectMapper

        @Autowired
        protected com.fasterxml.jackson.databind.ObjectMapper objectMapper
    • Constructor Detail

      • ProcessInstanceVariableResource

        public ProcessInstanceVariableResource()
    • Method Detail

      • getVariable

        @GetMapping(value="/runtime/process-instances/{processInstanceId}/variables/{variableName}",
                    produces="application/json")
        public RestVariable getVariable​(@PathVariable("processInstanceId")
                                        String processInstanceId,
                                        @PathVariable("variableName")
                                        String variableName,
                                        @RequestParam(value="scope",required=false)
                                        String scope,
                                        javax.servlet.http.HttpServletRequest request)
      • updateVariable

        @PutMapping(value="/runtime/process-instances/{processInstanceId}/variables/{variableName}",
                    produces="application/json",
                    consumes={"application/json","multipart/form-data"})
        public RestVariable updateVariable​(@PathVariable("processInstanceId")
                                           String processInstanceId,
                                           @PathVariable("variableName")
                                           String variableName,
                                           javax.servlet.http.HttpServletRequest request)
      • deleteVariable

        @DeleteMapping("/runtime/process-instances/{processInstanceId}/variables/{variableName}")
        public void deleteVariable​(@PathVariable("processInstanceId")
                                   String processInstanceId,
                                   @PathVariable("variableName")
                                   String variableName,
                                   @RequestParam(value="scope",required=false)
                                   String scope,
                                   javax.servlet.http.HttpServletResponse response)