package org.gcube.accounting.aggregator.persistence; import org.gcube.accounting.analytics.persistence.postgresql.AccountingPersistenceQueryPostgreSQL; /** * @author Luca Frosini (ISTI-CNR) */ public class PostgreSQLConnectorStatus extends PostgreSQLConnector implements AggregatorPersistenceStatus { protected PostgreSQLConnectorStatus() throws Exception { super(AccountingPersistenceQueryPostgreSQL.class); } protected PostgreSQLConnectorStatus(Class clazz) throws Exception { super(clazz); } }