Package org.apache.jena.update
Interface UpdateProcessor
-
- All Known Subinterfaces:
UpdateExec
,UpdateExecution
- All Known Implementing Classes:
UpdateExecAdapter
,UpdateExecDataset
,UpdateExecHTTP
,UpdateExecutionHTTP
,UpdateProcessorAdapter
,UpdateProcessorBase
,UpdateProcessRemote
,UpdateProcessRemoteBase
,UpdateProcessRemoteForm
public interface UpdateProcessor
An instance of a execution of an UpdateRequest. Applies to UpdateExec (GPI) and UpdateExecution (API)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description void
execute()
Executedefault Context
getContext()
Deprecated.UpdateProcessors are now built with the builderUpdateExecDatasetBuilder
andUpdateExecHTTPBuilder
.default DatasetGraph
getDatasetGraph()
Deprecated.
-
-
-
Method Detail
-
getContext
@Deprecated default Context getContext()
Deprecated.UpdateProcessors are now built with the builderUpdateExecDatasetBuilder
andUpdateExecHTTPBuilder
.The properties associated with a query execution - implementation specific parameters This includes Java objects (so it is not an RDF graph). Keys should be URIs as strings. May be null (this implementation does not provide any configuration).
-
getDatasetGraph
@Deprecated default DatasetGraph getDatasetGraph()
Deprecated.The dataset against which the query will execute. May be null, implying the there isn't a local GraphStore target for this UpdateProcessor.
-
execute
void execute()
Execute
-
-