Package org.apache.jena.sparql.modify
Interface UpdateEngineFactory
-
public interface UpdateEngineFactoryInterface for factories that accept and process SPARQL update requests.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanaccept(DatasetGraph datasetGraph, Context context)Answer whether this factory can produce an UpdateEngine for the specified GraphStoreUpdateEnginecreate(DatasetGraph datasetGraph, Binding inputBinding, Context context)Create the update engine - having returned true to accept, should not fail
-
-
-
Method Detail
-
accept
boolean accept(DatasetGraph datasetGraph, Context context)
Answer whether this factory can produce an UpdateEngine for the specified GraphStore
-
create
UpdateEngine create(DatasetGraph datasetGraph, Binding inputBinding, Context context)
Create the update engine - having returned true to accept, should not fail
-
-