*/
public DatasetAccessor getDatasetAccessor(String graphStoreURI)
{
HttpAuthenticator authenticator = getHttpAuthenticator(graphStoreURI);
if (authenticator != null) return new DatasetAdapter(new DatasetGraphAccessorHTTP(graphStoreURI, authenticator));
else return new DatasetAdapter(new DatasetGraphAccessorHTTP(graphStoreURI));
}