use of org.apache.rya.rdftriplestore.namespace.NamespaceManager in project incubator-rya by apache.
the class RdfCloudTripleStoreConnectionTest method setUp.
@Override
public void setUp() throws Exception {
super.setUp();
store = new MockRdfCloudStore();
// store.setDisplayQueryPlan(true);
// store.setInferencing(false);
NamespaceManager nm = new NamespaceManager(store.getRyaDAO(), store.getConf());
store.setNamespaceManager(nm);
repository = new RyaSailRepository(store);
repository.initialize();
}
Aggregations