accounting-lib/src/main/java/org/gcube/accounting/persistence/AccountingPersistenceExecut...

17 lines
304 B
Java

/**
*
*/
package org.gcube.accounting.persistence;
import org.gcube.accounting.datamodel.UsageRecord;
/**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/
*
*/
public interface AccountingPersistenceExecutor {
public void persist(UsageRecord... usageRecords)throws Exception;
}