Class TaskIdentityLinkCollectionResource

java.lang.Object
org.flowable.cmmn.rest.service.api.runtime.task.TaskBaseResource
org.flowable.cmmn.rest.service.api.runtime.task.TaskIdentityLinkCollectionResource

@RestController public class TaskIdentityLinkCollectionResource extends TaskBaseResource
Author:
Frederik Heremans
  • Constructor Details

    • TaskIdentityLinkCollectionResource

      public TaskIdentityLinkCollectionResource()
  • Method Details

    • getIdentityLinks

      @GetMapping(value="/cmmn-runtime/tasks/{taskId}/identitylinks", produces="application/json") public List<RestIdentityLink> getIdentityLinks(@PathVariable("taskId") String taskId)
    • createIdentityLink

      @PostMapping(value="/cmmn-runtime/tasks/{taskId}/identitylinks", produces="application/json") @ResponseStatus(CREATED) public RestIdentityLink createIdentityLink(@PathVariable("taskId") String taskId, @RequestBody RestIdentityLink identityLink)