001    package de.deepamehta.core.storage.spi;
002    
003    
004    
005    /**
006     * Factory for obtaining a DeepaMehta storage.
007     * <p>
008     * Note: the factory in only needed by the test suites.
009     * The DeepaMehta Core obtains the storage as an OSGi service.
010     */
011    public interface DeepaMehtaStorageFactory {
012    
013        DeepaMehtaStorage createInstance(String databasePath);
014    }