Package org.apache.jena.sparql.modify
Class UpdateProcessorBase
- java.lang.Object
-
- org.apache.jena.sparql.modify.UpdateProcessorBase
-
- All Implemented Interfaces:
UpdateProcessor
- Direct Known Subclasses:
UpdateExecDataset
public class UpdateProcessorBase extends java.lang.Object implements UpdateProcessor
Class to hold the general state of a update request execution. See query ExecutionContext
-
-
Constructor Summary
Constructors Constructor Description UpdateProcessorBase(UpdateRequest request, DatasetGraph datasetGraph, Binding inputBinding, Context context, UpdateEngineFactory factory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
execute()
ExecuteContext
getContext()
The properties associated with a query execution - implementation specific parameters This includes Java objects (so it is not an RDF graph).DatasetGraph
getDatasetGraph()
The dataset against which the query will execute.
-
-
-
Constructor Detail
-
UpdateProcessorBase
public UpdateProcessorBase(UpdateRequest request, DatasetGraph datasetGraph, Binding inputBinding, Context context, UpdateEngineFactory factory)
-
-
Method Detail
-
execute
public void execute()
Description copied from interface:UpdateProcessor
Execute- Specified by:
execute
in interfaceUpdateProcessor
-
getDatasetGraph
public DatasetGraph getDatasetGraph()
Description copied from interface:UpdateProcessor
The dataset against which the query will execute. May be null, implying the there isn't a local GraphStore target for this UpdateProcessor.- Specified by:
getDatasetGraph
in interfaceUpdateProcessor
-
getContext
public Context getContext()
Description copied from interface:UpdateProcessor
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).- Specified by:
getContext
in interfaceUpdateProcessor
-
-