Aligning with new model

This commit is contained in:
Luca Frosini 2021-06-04 11:58:35 +02:00
parent 1b2bdbfafa
commit f25bb8ae8f
1 changed files with 2 additions and 2 deletions

View File

@ -55,11 +55,11 @@ public class AccountingPersistenceQuery implements AccountingPersistenceBackendQ
AggregatedRecord<?, ?> instance = clz.newInstance();
// limit filter key for accounting storage status (used from portlet
// accounting for tad space)
// accounting for tab space)
if (clz.equals(AggregatedStorageStatusRecord.class)) {
SortedSet<String> storageStatus = new TreeSet<>();
storageStatus.add(AggregatedStorageStatusRecord.CONSUMER_ID);
storageStatus.add(AggregatedStorageStatusRecord.DATA_SERVICEID);
storageStatus.add(AggregatedStorageStatusRecord.PROVIDER_URI);
return storageStatus;
} else {
return instance.getQuerableKeys();