Removed unneeded old classes

feature/21368
Luca Frosini 3 years ago
parent 0d8c0a5b61
commit 2ab4b70350

1
.gitignore vendored

@ -1,2 +1,3 @@
target target
/.classpath /.classpath
/bin/

@ -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;
}

@ -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);
}
}
Loading…
Cancel
Save