public void addUserIdentityLink(String taskId, String userId, String identityLinkType) {
commandExecutor.execute(new AddUserIdentityLinkCmd(taskId, userId, identityLinkType));
}
public void addGroupIdentityLink(String taskId, String groupId, String identityLinkType) {
commandExecutor.execute(new AddGroupIdentityLinkCmd(taskId, groupId, identityLinkType));
}