package eu.dnetlib.repo.manager.service; import eu.dnetlib.openaire.exporter.model.dsm.AggregationInfo; import org.json.JSONException; import java.util.List; import java.util.Map; public interface AggregationService { List getRepositoryAggregations(String id) throws JSONException; List getRepositoryAggregations(String id, int from, int size) throws JSONException; Map> getRepositoryAggregationsByYear(String id) throws JSONException; }