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
-
-
Field Summary
-
Fields inherited from class org.flowable.rest.service.api.runtime.process.BaseProcessInstanceResource
repositoryService, restApiInterceptor, restResponseFactory, runtimeService
-
-
Constructor Summary
Constructors Constructor Description ProcessInstanceIdentityLinkResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddeleteIdentityLink(String processInstanceId, String identityId, String type, javax.servlet.http.HttpServletResponse response)protected org.flowable.identitylink.api.IdentityLinkgetIdentityLink(String identityId, String type, String processInstanceId)RestIdentityLinkgetIdentityLink(String processInstanceId, String identityId, String type, javax.servlet.http.HttpServletRequest request)protected voidvalidateIdentityLinkArguments(String identityId, String type)-
Methods inherited from class org.flowable.rest.service.api.runtime.process.BaseProcessInstanceResource
addVariables, getProcessInstanceFromRequest, getProcessInstanceFromRequestWithoutAccessCheck, getQueryResponse
-
-
-
-
Method Detail
-
getIdentityLink
@GetMapping(value="/runtime/process-instances/{processInstanceId}/identitylinks/users/{identityId}/{type}", produces="application/json") public RestIdentityLink getIdentityLink(@PathVariable("processInstanceId") String processInstanceId, @PathVariable("identityId") String identityId, @PathVariable("type") String type, javax.servlet.http.HttpServletRequest request)
-
deleteIdentityLink
@DeleteMapping("/runtime/process-instances/{processInstanceId}/identitylinks/users/{identityId}/{type}") public void deleteIdentityLink(@PathVariable("processInstanceId") String processInstanceId, @PathVariable("identityId") String identityId, @PathVariable("type") String type, javax.servlet.http.HttpServletResponse response)
-
validateIdentityLinkArguments
protected void validateIdentityLinkArguments(String identityId, String type)
-
-