public List<GroupDefinition> getAllGroupDefinitions() {
return commandExecutor.execute(new GetAllGroupDefinitionsCmd());
}
public GroupTo getGroup(String groupId, String groupType) {
return commandExecutor.execute(new GetGroupInfoByGroupIdCmd(groupId,getGroupDefinition(groupType)));
}