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

21 lines
409 B
Java
Raw Normal View History

/**
*
*/
package org.gcube.accounting.persistence;
/**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/
*
*/
public class AccountingPersistenceFactory {
public static void setFallbackLocation(String path){
AccountingPersistenceBackendFactory.setFallbackLocation(path);
}
public static AccountingPersistence getPersistence() {
return AccountingPersistence.getInstance();
}
}