コード例 #1
0
 public Group getGroupById(String groupId) {
   return taskIdentityService.getGroupById(groupId);
 }
コード例 #2
0
 public OrganizationalEntity getOrganizationalEntityById(String entityId) {
   return taskIdentityService.getOrganizationalEntityById(entityId);
 }
コード例 #3
0
 public List<Group> getGroups() {
   return taskIdentityService.getGroups();
 }
コード例 #4
0
 public User getUserById(String userId) {
   return taskIdentityService.getUserById(userId);
 }
コード例 #5
0
 public List<User> getUsers() {
   return taskIdentityService.getUsers();
 }
コード例 #6
0
 public void removeUser(String userId) {
   taskIdentityService.removeUser(userId);
 }
コード例 #7
0
 public void removeGroup(String groupId) {
   taskIdentityService.removeGroup(groupId);
 }
コード例 #8
0
 public void addGroup(Group group) {
   taskIdentityService.addGroup(group);
 }
コード例 #9
0
 public void addUser(User user) {
   taskIdentityService.addUser(user);
 }