public void addUserIdentityLink(String processInstanceId, String userId, String identityLinkType) {
commandExecutor.execute(new AddIdentityLinkForProcessInstanceCmd(processInstanceId, userId, null, identityLinkType));
}
public void addGroupIdentityLink(String processInstanceId, String groupId, String identityLinkType) {
commandExecutor.execute(new AddIdentityLinkForProcessInstanceCmd(processInstanceId, null, groupId, identityLinkType));
}