Fixed ConnectorStatus

This commit is contained in:
Luca Frosini 2024-03-08 11:46:50 +01:00
parent 0c7f0cee5e
commit e2bcfc016a
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ package org.gcube.accounting.aggregator.persistence;
public class PostgreSQLConnectorStatus extends PostgreSQLConnector implements AggregatorPersistenceStatus {
protected PostgreSQLConnectorStatus() throws Exception {
super(AggregatorPersistenceDst.class);
super(AggregatorPersistenceSrc.class);
}
protected PostgreSQLConnectorStatus(Class<?> clazz) throws Exception {

View File

@ -6,7 +6,7 @@ package org.gcube.accounting.aggregator.persistence;
class PostgreSQLConnectorStatusSrc extends PostgreSQLConnectorStatus implements AggregatorPersistenceStatusSrc {
protected PostgreSQLConnectorStatusSrc() throws Exception {
super(AggregatorPersistenceDst.class);
super(AggregatorPersistenceSrc.class);
}
}