qortal/src/repository/RepositoryFactory.java
catbref 2c23acfa74 Fix HSQLDB*Transaction save() methods
Added RepositoryManager.closeRepositoryFactory() to allow swapping out of repositories during unit testing

Added some more unit tests - all pass!
2018-06-14 09:55:58 +01:00

10 lines
163 B
Java

package repository;
public interface RepositoryFactory {
public Repository getRepository() throws DataException;
public void close() throws DataException;
}