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

View File

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