Package org.apache.jena.update
Interface UpdateProcessor
-
- All Known Implementing Classes:
UpdateProcessorBase,UpdateProcessRemote,UpdateProcessRemoteBase,UpdateProcessRemoteForm
public interface UpdateProcessorAn instance of a execution of an UpdateRequest
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexecute()ExecuteContextgetContext()The properties associated with a query execution - implementation specific parameters This includes Java objects (so it is not an RDF graph).DatasetGraphgetDatasetGraph()The dataset against which the query will execute.
-
-
-
Method Detail
-
getContext
Context getContext()
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
DatasetGraph getDatasetGraph()
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
-
-