Ranamed value

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/accounting/accounting-analytics@126361 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2016-03-30 07:42:48 +00:00
parent 2ef70e479f
commit 0caddf127d
2 changed files with 6 additions and 6 deletions

View File

@ -96,7 +96,7 @@ public interface AccountingPersistenceBackendQuery {
* @param clz
* @param temporalConstraint
* @param filters
* @param topKey
* @param key
* @param orderingProperty
* @return
* @throws DuplicatedKeyFilterException
@ -107,7 +107,7 @@ public interface AccountingPersistenceBackendQuery {
public SortedSet<NumberedFilter> getNextPossibleValues(
Class<? extends AggregatedRecord<?, ?>> clz,
TemporalConstraint temporalConstraint, List<Filter> filters,
String topKey, String orderingProperty) throws
String key, String orderingProperty) throws
DuplicatedKeyFilterException, KeyException, ValueException,
Exception;

View File

@ -225,14 +225,14 @@ public class AccountingPersistenceQuery implements AccountingPersistenceBackendQ
public SortedSet<NumberedFilter> getNextPossibleValues(
Class<? extends AggregatedRecord<?,?>> clz,
TemporalConstraint temporalConstraint, List<Filter> filters,
String topKey) throws DuplicatedKeyFilterException, KeyException,
String key) throws DuplicatedKeyFilterException, KeyException,
ValueException, Exception {
String orderingProperty = AccountingPersistenceQuery
.getDefaultOrderingProperties(clz);
return this.getNextPossibleValues(clz, temporalConstraint, filters,
topKey, orderingProperty);
key, orderingProperty);
}
/**
@ -242,13 +242,13 @@ public class AccountingPersistenceQuery implements AccountingPersistenceBackendQ
public SortedSet<NumberedFilter> getNextPossibleValues(
Class<? extends AggregatedRecord<?, ?>> clz,
TemporalConstraint temporalConstraint, List<Filter> filters,
String topKey, String orderingProperty) throws
String key, String orderingProperty) throws
DuplicatedKeyFilterException, KeyException, ValueException,
Exception {
return AccountingPersistenceBackendQueryFactory.getInstance()
.getNextPossibleValues(clz, temporalConstraint, filters,
topKey, orderingProperty);
key, orderingProperty);
}