DatasetGraphAccessor accessor;
if (this.GRAPHSTORE_LOGIN != null)
{
HttpAuthenticator httpAuthenticator = new SimpleAuthenticator(
GRAPHSTORE_LOGIN, GRAPHSTORE_PASSWORD.toCharArray());
accessor = new DatasetGraphAccessorHTTP(GRAPHSTORE_ENDPOINT,
httpAuthenticator);
} else {
accessor = new DatasetGraphAccessorHTTP(GRAPHSTORE_ENDPOINT);
}
return accessor;
}