Implemeting library

This commit is contained in:
Luca Frosini 2021-03-22 18:29:39 +01:00
parent 68738aca6d
commit 9c967f5e32
1 changed files with 5 additions and 5 deletions

View File

@ -257,11 +257,6 @@ public class AccountingPersistenceQueryPostgreSQL implements AccountingPersisten
return ret;
}
@Override
public List<UsageValue> getUsageValueQuotaTotal(List<UsageValue> listUsage) throws Exception {
return null;
}
@Override
public Record getRecord(String recordId, String type) throws Exception {
Class<? extends AggregatedRecord<?, ?>> aggregatedRecordClass = RecordUtility.getAggregatedRecordClass(type);
@ -306,6 +301,11 @@ public class AccountingPersistenceQueryPostgreSQL implements AccountingPersisten
}
@Override
public List<UsageValue> getUsageValueQuotaTotal(List<UsageValue> listUsage) throws Exception {
return null;
}
@Override
public SortedMap<Filter, SortedMap<Calendar, Long>> getSpaceTimeSeries(Class<? extends AggregatedRecord<?, ?>> clz,
TemporalConstraint temporalConstraint, List<Filter> filters, List<String> providersId) throws Exception {