accounting-aggregator-se-pl.../src/main/java/org/gcube/accounting/aggregator/persistence/PostgreSQLConnectorSrc.java

16 lines
455 B
Java
Raw Normal View History

package org.gcube.accounting.aggregator.persistence;
2024-02-13 16:03:10 +01:00
import org.gcube.accounting.analytics.persistence.postgresql.AccountingPersistenceQueryPostgreSQL;
/**
* @author Luca Frosini (ISTI-CNR)
*/
public class PostgreSQLConnectorSrc extends PostgreSQLConnector implements AggregatorPersistenceSrc {
protected PostgreSQLConnectorSrc() throws Exception {
2024-02-14 17:50:22 +01:00
// super(PostgreSQLConnectorSrc.class);
2024-02-13 16:03:10 +01:00
super(AccountingPersistenceQueryPostgreSQL.class);
}
}