Class ProcessInstanceTasksController

java.lang.Object
org.activiti.cloud.services.query.rest.ProcessInstanceTasksController

@RestController @RequestMapping(value="/v1/process-instances/{processInstanceId}", produces={"application/hal+json","application/json"}) public class ProcessInstanceTasksController extends Object
  • Constructor Details

  • Method Details

    • getTasks

      @RequestMapping(value="/tasks", method=GET, params="!variableKeys") public org.springframework.hateoas.PagedModel<org.springframework.hateoas.EntityModel<QueryCloudTask>> getTasks(@PathVariable String processInstanceId, org.springframework.data.domain.Pageable pageable)
    • getTasksWithProcessVariables

      @RequestMapping(value="/tasks", method=GET, params="variableKeys") public org.springframework.hateoas.PagedModel<org.springframework.hateoas.EntityModel<QueryCloudTask>> getTasksWithProcessVariables(@PathVariable String processInstanceId, @RequestParam(value="variableKeys",required=false,defaultValue="") List<String> processVariableKeys, org.springframework.data.domain.Pageable pageable)