Class ProcessInstanceIdentityLinkCollectionResource
java.lang.Object
org.flowable.rest.service.api.runtime.process.BaseProcessInstanceResource
org.flowable.rest.service.api.runtime.process.ProcessInstanceIdentityLinkCollectionResource
@RestController
public class ProcessInstanceIdentityLinkCollectionResource
extends BaseProcessInstanceResource
- Author:
 - Frederik Heremans
 
- 
Field Summary
Fields inherited from class org.flowable.rest.service.api.runtime.process.BaseProcessInstanceResource
repositoryService, restApiInterceptor, restResponseFactory, runtimeService - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptioncreateIdentityLink(String processInstanceId, RestIdentityLink identityLink) getIdentityLinks(String processInstanceId) Methods inherited from class org.flowable.rest.service.api.runtime.process.BaseProcessInstanceResource
addVariables, getProcessInstanceFromRequest, getProcessInstanceFromRequestWithoutAccessCheck, getQueryResponse 
- 
Constructor Details
- 
ProcessInstanceIdentityLinkCollectionResource
public ProcessInstanceIdentityLinkCollectionResource() 
 - 
 - 
Method Details
- 
getIdentityLinks
@GetMapping(value="/runtime/process-instances/{processInstanceId}/identitylinks", produces="application/json") public List<RestIdentityLink> getIdentityLinks(@PathVariable String processInstanceId)  - 
createIdentityLink
@PostMapping(value="/runtime/process-instances/{processInstanceId}/identitylinks", produces="application/json") @ResponseStatus(CREATED) public RestIdentityLink createIdentityLink(@PathVariable String processInstanceId, @RequestBody RestIdentityLink identityLink)  
 -