Fixed javadoc warning

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/accounting/accounting-analytics@157745 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2017-10-27 15:36:13 +00:00
parent 94876e3d0d
commit b7edbb6ae8
1 changed files with 3 additions and 81 deletions

View File

@ -123,19 +123,6 @@ public interface AccountingPersistenceBackendQuery {
throws DuplicatedKeyFilterException, KeyException, ValueException,
Exception;
/**
*
* @param clz
* @param temporalConstraint
* @param filters
* @param key
* @param orderingProperty
* @return
* @throws DuplicatedKeyFilterException
* @throws KeyException
* @throws ValueException
* @throws Exception
*/
public SortedSet<NumberedFilter> getNextPossibleValues(
Class<? extends AggregatedRecord<?, ?>> clz,
TemporalConstraint temporalConstraint, List<Filter> filters,
@ -143,17 +130,6 @@ public interface AccountingPersistenceBackendQuery {
DuplicatedKeyFilterException, KeyException, ValueException,
Exception;
/**
* Same method but use if possible a map-reduce
* @param clz
* @param temporalConstraint
* @param filters
* @param key
* @param orderingProperty
* @return
* @throws Exception
*/
public SortedSet<NumberedFilter> getNextPossibleValuesWithMap(
Class<? extends AggregatedRecord<?, ?>> clz,
TemporalConstraint temporalConstraint, List<Filter> filters,
@ -167,40 +143,12 @@ public interface AccountingPersistenceBackendQuery {
*/
public void close() throws Exception;
/**
* Return a sortedSet filter value
*
*
* @param clz
* @param temporalConstraint
* @param filters
* @param key
* @param orderingProperty
* @return
* @throws DuplicatedKeyFilterException
* @throws KeyException
* @throws ValueException
* @throws Exception
*/
@Deprecated
public SortedSet<NumberedFilter> getFilterValues(
Class<? extends AggregatedRecord<?, ?>> clz,
TemporalConstraint temporalConstraint, List<Filter> filters,
String key) throws Exception;
/**
* Return a sortedSet filter value
*
* @param clz
* @param temporalConstraint
* @param filters
* @param key
* @param limit use null to get the results with no limits
* @return
* @throws Exception
*/
public SortedSet<NumberedFilter> getFilterValues(
Class<? extends AggregatedRecord<?, ?>> clz,
TemporalConstraint temporalConstraint, List<Filter> filters,
@ -217,7 +165,7 @@ public interface AccountingPersistenceBackendQuery {
* the TemporalConstraint (interval and aggregation)
* @param applicant
* the type field and value
* @return
* @return JSONObject
* @throws Exception
*/
public JSONObject getUsageValue(Class<? extends AggregatedRecord<?, ?>> clz,
@ -289,7 +237,7 @@ public interface AccountingPersistenceBackendQuery {
* ], d=2.0, orderingProperty=null]
* ]
* @param listUsage
* @return
* @return List<UsageValue>
* @throws Exception
*/
public List<UsageValue> getUsageValueQuotaTotal(
@ -302,48 +250,22 @@ public interface AccountingPersistenceBackendQuery {
* @param temporalConstraint
* @param filters
* @param contexts
* @return
* @return a SortedMap containing the TimeSeries for each context.
*/
public SortedMap<Filter, SortedMap<Calendar, Info>> getContextTimeSeries(
Class<? extends AggregatedRecord<?, ?>> clz,
TemporalConstraint temporalConstraint, List<Filter> filters,List<String> contexts)
throws Exception;
/**
* Return a record
* @param recordId
* @param recordType
* @return
* @throws Exception
*/
public String getRecord(String recordId, String type ) throws Exception;
/**
* Return a list of type storage usage
* @return
* @throws Exception
*/
public SortedSet<String> getSpaceProvidersIds() throws Exception;
/**
*
* @param clz
* @param temporalConstraint
* @param filters
* @param providersId
* @return
* @throws Exception
*/
public SortedMap<Filter, SortedMap<Calendar, Long>> getSpaceTimeSeries(
Class<? extends AggregatedRecord<?, ?>> clz,
TemporalConstraint temporalConstraint, List<Filter> filters,
List<String> providersId) throws Exception;
/**
* @return
* @throws Exception
*/
boolean isConnectionActive() throws Exception;
}