public String createGroup(String groupName, String groupType, String parentGroupId) {
return commandService.execute(new CreateGroupCmd(groupName, groupType, parentGroupId));
}
public Group findGroupById(String groupId) {
return commandService.execute(new FindGroupCmd(groupId));
}