it.unibz.inf.ontop.rdf4j.repository.OntopRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontop-rdf4j Show documentation
Show all versions of ontop-rdf4j Show documentation
This is the rdf4j API implementation based on Ontop
The newest version!
package it.unibz.inf.ontop.rdf4j.repository;
import it.unibz.inf.ontop.answering.cache.HTTPCacheHeaders;
import it.unibz.inf.ontop.injection.OntopSystemConfiguration;
import it.unibz.inf.ontop.rdf4j.repository.impl.OntopVirtualRepository;
import org.eclipse.rdf4j.repository.RepositoryException;
/**
* Ontop RDF4J repository
*/
public interface OntopRepository extends org.eclipse.rdf4j.repository.Repository, AutoCloseable {
HTTPCacheHeaders getHttpCacheHeaders();
@Override
OntopRepositoryConnection getConnection() throws RepositoryException;
static OntopVirtualRepository defaultRepository(OntopSystemConfiguration configuration) {
return new OntopVirtualRepository(configuration);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy