use of org.eclipse.rdf4j.sail.inferencer.fc.config.ForwardChainingRDFSInferencerConfig in project Commons by denkbares.
the class RdfsConfig method createRepositoryConfig.
@Override
public org.eclipse.rdf4j.repository.config.RepositoryConfig createRepositoryConfig(String repositoryId, String repositoryLabel, Map<String, String> overrides) throws RepositoryConfigException {
// create a configuration for the SAIL stack
SailImplConfig backendConfig = new MemoryStoreConfig();
// create a configuration for the repository implementation
SailRepositoryConfig repositoryTypeSpec = new SailRepositoryConfig(new ForwardChainingRDFSInferencerConfig(backendConfig));
return new org.eclipse.rdf4j.repository.config.RepositoryConfig(repositoryId, repositoryTypeSpec);
}
Aggregations