net.fortytwo.ripple.config.SailFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ripple-demo Show documentation
Show all versions of ripple-demo Show documentation
Ripple demo at the command-line
package net.fortytwo.ripple.config;
import net.fortytwo.ripple.RippleException;
import net.fortytwo.ripple.URIMap;
import org.openrdf.sail.Sail;
/**
* @author Joshua Shinavier (http://fortytwo.net)
*/
public interface SailFactory {
Class getSailClass();
Sail createSail(URIMap uriMap,
SailConfiguration config) throws RippleException;
}