public String createGroup(String groupName, String groupType) {
return commandService.execute(new CreateGroupCmd(groupName, groupType, null));
}
public String createGroup(String groupName, String groupType, String parentGroupId) {
return commandService.execute(new CreateGroupCmd(groupName, groupType, parentGroupId));
}