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

18 lines
503 B
Java

package org.gcube.accounting.aggregator.persistence;
import java.sql.ResultSet;
import org.gcube.accounting.aggregator.status.AggregationStatus;
import org.gcube.com.fasterxml.jackson.databind.JsonNode;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface AggregatorPersistenceSrc extends AggregatorPersistence {
public ResultSet getResultSetOfRecordToBeAggregated(AggregationStatus aggregationStatus) throws Exception;
public void deleteRecord(JsonNode jsonNode) throws Exception;
}