Model _model;
try {
repository.initialize();
// Then 'wrap' the sesame thing in an RDF2Go Model:
_model = new RepositoryModel(repository);
_model.open();
} catch (RepositoryException e) {
logger.log(Level.SEVERE, "Problem with initializing connection to the RDF storage ", e);
return null;
}