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
  • 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)