@RestController
@RequestMapping(value="/v1/process-instances",
produces="application/hal+json")
public class ProcessInstanceQueryController
extends Object
| Constructor and Description |
|---|
ProcessInstanceQueryController(ProcessInstanceRepository processInstanceRepository,
EntityFinder entityFinder,
ProcessInstanceQueryResourceAssembler resourceAssembler) |
| Modifier and Type | Method and Description |
|---|---|
org.springframework.hateoas.PagedResources<ProcessInstanceQueryResource> |
findAllByWebQuerydsl(com.querydsl.core.types.Predicate predicate,
org.springframework.data.domain.Pageable pageable,
org.springframework.data.web.PagedResourcesAssembler<ProcessInstance> pagedResourcesAssembler) |
org.springframework.hateoas.Resource<ProcessInstance> |
getProcessInstanceById(Long processInstanceId) |
@Autowired public ProcessInstanceQueryController(ProcessInstanceRepository processInstanceRepository, EntityFinder entityFinder, ProcessInstanceQueryResourceAssembler resourceAssembler)
@RequestMapping(method=GET) @ResponseBody public org.springframework.hateoas.PagedResources<ProcessInstanceQueryResource> findAllByWebQuerydsl(com.querydsl.core.types.Predicate predicate, org.springframework.data.domain.Pageable pageable, org.springframework.data.web.PagedResourcesAssembler<ProcessInstance> pagedResourcesAssembler)
@RequestMapping(value="/{processInstanceId}",
method=GET)
public org.springframework.hateoas.Resource<ProcessInstance> getProcessInstanceById(@PathVariable
Long processInstanceId)
Copyright © 2010–2017 Alfresco. All rights reserved.