return exec;
}
@Override
protected UpdateProcessor createUpdateProcessor(UpdateRequest u) {
UpdateProcessRemoteBase proc = (UpdateProcessRemoteBase) UpdateExecutionFactory.createRemote(u,
this.remoteConn.getUpdateEndpoint());
// Apply authentication settings
if (this.authenticator != null) {
proc.setAuthenticator(this.authenticator);
}
// Apply default and named graphs if appropriate
if (this.remoteConn.getUsingGraphURIs() != null) {
proc.setDefaultGraphs(this.remoteConn.getUsingGraphURIs());
}
if (this.remoteConn.getNamedGraphURIs() != null) {
proc.setNamedGraphs(this.remoteConn.getUsingNamedGraphURIs());
}
return proc;
}