From b7edbb6ae88ba5005fb9955eea5d571d0c43d025 Mon Sep 17 00:00:00 2001 From: Luca Frosini Date: Fri, 27 Oct 2017 15:36:13 +0000 Subject: [PATCH] Fixed javadoc warning git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/accounting/accounting-analytics@157745 82a268e6-3cf1-43bd-a215-b396298e98cf --- .../AccountingPersistenceBackendQuery.java | 84 +------------------ 1 file changed, 3 insertions(+), 81 deletions(-) diff --git a/src/main/java/org/gcube/accounting/analytics/persistence/AccountingPersistenceBackendQuery.java b/src/main/java/org/gcube/accounting/analytics/persistence/AccountingPersistenceBackendQuery.java index 0992024..a1c787f 100644 --- a/src/main/java/org/gcube/accounting/analytics/persistence/AccountingPersistenceBackendQuery.java +++ b/src/main/java/org/gcube/accounting/analytics/persistence/AccountingPersistenceBackendQuery.java @@ -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 getNextPossibleValues( Class> clz, TemporalConstraint temporalConstraint, List 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 getNextPossibleValuesWithMap( Class> clz, TemporalConstraint temporalConstraint, List 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 getFilterValues( Class> clz, TemporalConstraint temporalConstraint, List 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 getFilterValues( Class> clz, TemporalConstraint temporalConstraint, List 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> clz, @@ -289,7 +237,7 @@ public interface AccountingPersistenceBackendQuery { * ], d=2.0, orderingProperty=null] * ] * @param listUsage - * @return + * @return List * @throws Exception */ public List 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> getContextTimeSeries( Class> clz, TemporalConstraint temporalConstraint, List filters,List 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 getSpaceProvidersIds() throws Exception; - /** - * - * @param clz - * @param temporalConstraint - * @param filters - * @param providersId - * @return - * @throws Exception - */ public SortedMap> getSpaceTimeSeries( Class> clz, TemporalConstraint temporalConstraint, List filters, List providersId) throws Exception; - /** - * @return - * @throws Exception - */ boolean isConnectionActive() throws Exception; - }