Class TaskIdentityLinkCollectionResource
java.lang.Object
org.flowable.rest.service.api.runtime.task.TaskBaseResource
org.flowable.rest.service.api.runtime.task.TaskIdentityLinkCollectionResource
- Author:
- Frederik Heremans
-
Field Summary
Fields inherited from class org.flowable.rest.service.api.runtime.task.TaskBaseResource
historyService, restApiInterceptor, restResponseFactory, taskService
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateIdentityLink
(String taskId, RestIdentityLink identityLink) getIdentityLinks
(String taskId) Methods inherited from class org.flowable.rest.service.api.runtime.task.TaskBaseResource
addProcessvariables, addTaskvariables, getDelegationState, getHistoricTaskFromRequest, getHistoricTaskFromRequestWithoutAccessCheck, getTaskFromRequest, getTaskFromRequestWithoutAccessCheck, getTasksFromIdList, getTasksFromQueryRequest, populateTaskFromRequest, populateTasksFromRequest
-
Constructor Details
-
TaskIdentityLinkCollectionResource
public TaskIdentityLinkCollectionResource()
-
-
Method Details
-
getIdentityLinks
@GetMapping(value="/runtime/tasks/{taskId}/identitylinks", produces="application/json") public List<RestIdentityLink> getIdentityLinks(@PathVariable("taskId") String taskId) -
createIdentityLink
@PostMapping(value="/runtime/tasks/{taskId}/identitylinks", produces="application/json") @ResponseStatus(CREATED) public RestIdentityLink createIdentityLink(@PathVariable("taskId") String taskId, @RequestBody RestIdentityLink identityLink)
-