Class ProcessDefinitionIdentityLinkCollectionResource

java.lang.Object
org.flowable.rest.service.api.repository.BaseProcessDefinitionResource
org.flowable.rest.service.api.repository.ProcessDefinitionIdentityLinkCollectionResource

@RestController public class ProcessDefinitionIdentityLinkCollectionResource extends BaseProcessDefinitionResource
Author:
Frederik Heremans
  • Constructor Details

    • ProcessDefinitionIdentityLinkCollectionResource

      public ProcessDefinitionIdentityLinkCollectionResource()
  • Method Details

    • getIdentityLinks

      @GetMapping(value="/repository/process-definitions/{processDefinitionId}/identitylinks", produces="application/json") public List<RestIdentityLink> getIdentityLinks(@PathVariable String processDefinitionId)
    • createIdentityLink

      @PostMapping(value="/repository/process-definitions/{processDefinitionId}/identitylinks", produces="application/json") @ResponseStatus(CREATED) public RestIdentityLink createIdentityLink(@PathVariable String processDefinitionId, @RequestBody RestIdentityLink identityLink)