public Model load(String uri)
{
Node graphNode = NodeFactory.createURI(uri);
DatasetGraphAccessor accessor = this.getAccessor();
Graph g = accessor.httpGet(graphNode);
if (g == null || g.isEmpty())
{
return null;
}
GraphStore gs = GraphStoreFactory.create(g);