Class ProcessInstanceController


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

      • findAll

        @RequestMapping(method=GET)
        public org.springframework.hateoas.PagedModel<org.springframework.hateoas.EntityModel<CloudProcessInstance>> findAll​(com.querydsl.core.types.Predicate predicate,
                                                                                                                             org.springframework.data.domain.Pageable pageable)
      • findById

        @RequestMapping(value="/{processInstanceId}",
                        method=GET)
        public org.springframework.hateoas.EntityModel<CloudProcessInstance> findById​(@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)