Class ProcessInstanceIdentityLinkResource

java.lang.Object
org.flowable.rest.service.api.runtime.process.BaseProcessInstanceResource
org.flowable.rest.service.api.runtime.process.ProcessInstanceIdentityLinkResource

@RestController public class ProcessInstanceIdentityLinkResource extends BaseProcessInstanceResource
Author:
Frederik Heremans
  • Constructor Details

    • ProcessInstanceIdentityLinkResource

      public ProcessInstanceIdentityLinkResource()
  • Method Details

    • getIdentityLinkRequest

      @GetMapping(value="/runtime/process-instances/{processInstanceId}/identitylinks/users/{identityId}/{type}", produces="application/json") public RestIdentityLink getIdentityLinkRequest(@PathVariable("processInstanceId") String processInstanceId, @PathVariable("identityId") String identityId, @PathVariable("type") String type)
    • deleteIdentityLink

      @DeleteMapping("/runtime/process-instances/{processInstanceId}/identitylinks/users/{identityId}/{type}") @ResponseStatus(NO_CONTENT) public void deleteIdentityLink(@PathVariable("processInstanceId") String processInstanceId, @PathVariable("identityId") String identityId, @PathVariable("type") String type)
    • validateIdentityLinkArguments

      protected void validateIdentityLinkArguments(String identityId, String type)
    • getIdentityLink

      protected org.flowable.identitylink.api.IdentityLink getIdentityLink(String identityId, String type, String processInstanceId)