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

16 lines
402 B
Java
Raw Normal View History

package org.gcube.accounting.aggregator.persistence;
/**
* @author Luca Frosini (ISTI-CNR)
*/
2024-02-14 17:50:22 +01:00
public class PostgreSQLConnectorStatus extends PostgreSQLConnector implements AggregatorPersistenceStatus {
protected PostgreSQLConnectorStatus() throws Exception {
2024-03-08 11:46:50 +01:00
super(AggregatorPersistenceSrc.class);
}
2024-02-14 17:50:22 +01:00
protected PostgreSQLConnectorStatus(Class<?> clazz) throws Exception {
super(clazz);
}
}