001package systems.dmx.core.storage.spi;
002
003import systems.dmx.core.service.ModelFactory;
004
005
006
007/**
008 * Factory for obtaining a DMX storage.
009 * <p>
010 * Note: the factory is only needed by the test environment.
011 * The DMX Core obtains the storage as an OSGi service.
012 */
013public interface DMXStorageFactory {
014
015    DMXStorage newDMXStorage(String databasePath, ModelFactory mf);
016}