public Group getGroupById(String groupId) { return taskIdentityService.getGroupById(groupId); }
public OrganizationalEntity getOrganizationalEntityById(String entityId) { return taskIdentityService.getOrganizationalEntityById(entityId); }
public List<Group> getGroups() { return taskIdentityService.getGroups(); }
public User getUserById(String userId) { return taskIdentityService.getUserById(userId); }
public List<User> getUsers() { return taskIdentityService.getUsers(); }
public void removeUser(String userId) { taskIdentityService.removeUser(userId); }
public void removeGroup(String groupId) { taskIdentityService.removeGroup(groupId); }
public void addGroup(Group group) { taskIdentityService.addGroup(group); }
public void addUser(User user) { taskIdentityService.addUser(user); }