Class ProcessInstanceController

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

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

  • Method Details

    • findAllProcessInstances

      @RequestMapping(method=GET, params="!variableKeys") public org.springframework.hateoas.PagedModel<org.springframework.hateoas.EntityModel<CloudProcessInstance>> findAllProcessInstances(com.querydsl.core.types.Predicate predicate, org.springframework.data.domain.Pageable pageable)
    • findAllWithVariables

      @RequestMapping(method=GET, params="variableKeys") public org.springframework.hateoas.PagedModel<org.springframework.hateoas.EntityModel<CloudProcessInstance>> findAllWithVariables(com.querydsl.core.types.Predicate predicate, @RequestParam(value="variableKeys",required=false,defaultValue="") List<String> variableKeys, org.springframework.data.domain.Pageable pageable)
    • findByIdProcess

      @RequestMapping(value="/{processInstanceId}", method=GET) public org.springframework.hateoas.EntityModel<CloudProcessInstance> findByIdProcess(@PathVariable String processInstanceId)
    • subprocesses

      @RequestMapping(value="/{processInstanceId}/subprocesses", method=GET) public org.springframework.hateoas.PagedModel<org.springframework.hateoas.EntityModel<CloudProcessInstance>> subprocesses(@PathVariable String processInstanceId, com.querydsl.core.types.Predicate predicate, org.springframework.data.domain.Pageable pageable)