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

16 lines
407 B
Java

package org.gcube.accounting.aggregator.persistence;
import org.gcube.documentstore.persistence.PersistencePostgreSQL;
/**
* @author Luca Frosini (ISTI-CNR)
*/
public class PostgreSQLConnectorDst extends PostgreSQLConnector implements AggregatorPersistenceDst {
protected PostgreSQLConnectorDst() throws Exception {
// super(PostgreSQLConnectorDst.class);
super(PersistencePostgreSQL.class);
}
}