public void deleteUserIdentityLink(String processInstanceId, String userId, String identityLinkType) {
commandExecutor.execute(new DeleteIdentityLinkForProcessInstanceCmd(processInstanceId, userId, null, identityLinkType));
}
public void deleteGroupIdentityLink(String processInstanceId, String groupId, String identityLinkType) {
commandExecutor.execute(new DeleteIdentityLinkForProcessInstanceCmd(processInstanceId, null, groupId, identityLinkType));
}