Changed classes signature

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/accounting/accounting-analytics@133098 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2016-10-12 12:09:44 +00:00
parent 31e6be1ed4
commit 9e3bed0bbb
15 changed files with 17 additions and 17 deletions

View File

@ -4,7 +4,7 @@
package org.gcube.accounting.analytics; package org.gcube.accounting.analytics;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class Filter implements Comparable<Filter> { public class Filter implements Comparable<Filter> {

View File

@ -10,7 +10,7 @@ import org.json.JSONObject;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class Info { public class Info {

View File

@ -9,7 +9,7 @@ import java.util.Map;
import org.json.JSONObject; import org.json.JSONObject;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class NumberedFilter extends Filter { public class NumberedFilter extends Filter {

View File

@ -17,7 +17,7 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class TemporalConstraint { public class TemporalConstraint {
@ -30,7 +30,7 @@ public class TemporalConstraint {
/** /**
* Valid Aggregation Mode * Valid Aggregation Mode
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
*/ */
public enum AggregationMode { public enum AggregationMode {
YEARLY, MONTHLY, DAILY, HOURLY, MINUTELY, SECONDLY, MILLISECONDLY YEARLY, MONTHLY, DAILY, HOURLY, MINUTELY, SECONDLY, MILLISECONDLY
@ -39,7 +39,7 @@ public class TemporalConstraint {
/** /**
* Used to map the Calendar constant to an enum value which has the same * Used to map the Calendar constant to an enum value which has the same
* ordinal of {@link AggregationMode} * ordinal of {@link AggregationMode}
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
*/ */
public enum CalendarEnum { public enum CalendarEnum {
YEAR(Calendar.YEAR), YEAR(Calendar.YEAR),

View File

@ -4,7 +4,7 @@
package org.gcube.accounting.analytics.exception; package org.gcube.accounting.analytics.exception;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class DuplicatedKeyFilterException extends Exception { public class DuplicatedKeyFilterException extends Exception {

View File

@ -4,7 +4,7 @@
package org.gcube.accounting.analytics.exception; package org.gcube.accounting.analytics.exception;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class KeyException extends Exception { public class KeyException extends Exception {

View File

@ -4,7 +4,7 @@
package org.gcube.accounting.analytics.exception; package org.gcube.accounting.analytics.exception;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class NoAvailableScopeException extends Exception { public class NoAvailableScopeException extends Exception {

View File

@ -4,7 +4,7 @@
package org.gcube.accounting.analytics.exception; package org.gcube.accounting.analytics.exception;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class NoUsableAccountingPersistenceQueryFound extends Exception { public class NoUsableAccountingPersistenceQueryFound extends Exception {

View File

@ -4,7 +4,7 @@
package org.gcube.accounting.analytics.exception; package org.gcube.accounting.analytics.exception;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class ValueException extends Exception { public class ValueException extends Exception {

View File

@ -19,7 +19,7 @@ import org.gcube.documentstore.records.AggregatedRecord;
import org.json.JSONObject; import org.json.JSONObject;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
*/ */
public interface AccountingPersistenceBackendQuery { public interface AccountingPersistenceBackendQuery {

View File

@ -3,7 +3,7 @@ package org.gcube.accounting.analytics.persistence;
import org.gcube.accounting.persistence.AccountingPersistenceConfiguration; import org.gcube.accounting.persistence.AccountingPersistenceConfiguration;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
*/ */
public class AccountingPersistenceBackendQueryConfiguration extends AccountingPersistenceConfiguration { public class AccountingPersistenceBackendQueryConfiguration extends AccountingPersistenceConfiguration {

View File

@ -14,7 +14,7 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
*/ */
public abstract class AccountingPersistenceBackendQueryFactory { public abstract class AccountingPersistenceBackendQueryFactory {

View File

@ -27,7 +27,7 @@ import org.json.JSONException;
import org.json.JSONObject; import org.json.JSONObject;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class AccountingPersistenceQuery implements AccountingPersistenceBackendQuery { public class AccountingPersistenceQuery implements AccountingPersistenceBackendQuery {

View File

@ -5,7 +5,7 @@ package org.gcube.accounting.analytics.persistence;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class AccountingPersistenceQueryFactory { public class AccountingPersistenceQueryFactory {

View File

@ -13,7 +13,7 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
/** /**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/ * @author Luca Frosini (ISTI - CNR)
* *
*/ */
public class TemporalConstraintTest { public class TemporalConstraintTest {