From 2ab4b70350e5f21e4e008782b46c0a194a901c56 Mon Sep 17 00:00:00 2001 From: Luca Frosini Date: Mon, 10 May 2021 09:31:43 +0200 Subject: [PATCH] Removed unneeded old classes --- .gitignore | 1 + .../AggregatorPersistenceBackendQuery.java | 17 ----------- ...rPersistenceBackendQueryConfiguration.java | 30 ------------------- 3 files changed, 1 insertion(+), 47 deletions(-) delete mode 100644 src/main/java/org/gcube/accounting/insert/storage/persistence/AggregatorPersistenceBackendQuery.java delete mode 100644 src/main/java/org/gcube/accounting/insert/storage/persistence/AggregatorPersistenceBackendQueryConfiguration.java diff --git a/.gitignore b/.gitignore index d5ea5a0..d943184 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ target /.classpath +/bin/ diff --git a/src/main/java/org/gcube/accounting/insert/storage/persistence/AggregatorPersistenceBackendQuery.java b/src/main/java/org/gcube/accounting/insert/storage/persistence/AggregatorPersistenceBackendQuery.java deleted file mode 100644 index 50e7c85..0000000 --- a/src/main/java/org/gcube/accounting/insert/storage/persistence/AggregatorPersistenceBackendQuery.java +++ /dev/null @@ -1,17 +0,0 @@ -package org.gcube.accounting.insert.storage.persistence; - - - -/** - * @author Alessandro Pieve (ISTI - CNR) - * - */ -public interface AggregatorPersistenceBackendQuery { - - public static final int KEY_VALUES_LIMIT = 25; - - public void prepareConnection( - AggregatorPersistenceBackendQueryConfiguration configuration) - throws Exception; - -} diff --git a/src/main/java/org/gcube/accounting/insert/storage/persistence/AggregatorPersistenceBackendQueryConfiguration.java b/src/main/java/org/gcube/accounting/insert/storage/persistence/AggregatorPersistenceBackendQueryConfiguration.java deleted file mode 100644 index 1f7269c..0000000 --- a/src/main/java/org/gcube/accounting/insert/storage/persistence/AggregatorPersistenceBackendQueryConfiguration.java +++ /dev/null @@ -1,30 +0,0 @@ -package org.gcube.accounting.insert.storage.persistence; - - -import org.gcube.accounting.persistence.AccountingPersistenceConfiguration; - -/** - * @author Alessandro Pieve (ISTI - CNR) - * - */ -public class AggregatorPersistenceBackendQueryConfiguration extends AccountingPersistenceConfiguration { - - /** - * Default Constructor - */ - public AggregatorPersistenceBackendQueryConfiguration(){ - super(); - } - - /** - * @param persistence The class of the persistence to instantiate - * @throws Exception if fails - */ - @SuppressWarnings({ "unchecked", "rawtypes" }) - public AggregatorPersistenceBackendQueryConfiguration(Class persistence) throws Exception{ - super((Class) persistence); - } - - - -} \ No newline at end of file