Interface CombinedTripleSource
-
- All Known Implementing Classes:
BasicCombinedTripleSource
public interface CombinedTripleSourceProvides the long-term data structures, and a way to obtain the short-term data structures. Repeated calls for the same data structure should yield the same instance. Repeated calls for the ShortTermCombinedTripleSource need not yield the same instance, but must yield an instance that will return the same structures as any other instance for the same request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.jena.query.DatasetgetDataset(ModelAccess.WhichService whichService)org.apache.jena.rdf.model.ModelMakergetModelMaker(ModelAccess.WhichService whichService)OntModelCachegetOntModelCache()RDFServicegetRDFService(ModelAccess.WhichService whichService)ShortTermCombinedTripleSourcegetShortTermCombinedTripleSource(javax.servlet.http.HttpServletRequest req)
-
-
-
Method Detail
-
getRDFService
RDFService getRDFService(ModelAccess.WhichService whichService)
-
getDataset
org.apache.jena.query.Dataset getDataset(ModelAccess.WhichService whichService)
-
getModelMaker
org.apache.jena.rdf.model.ModelMaker getModelMaker(ModelAccess.WhichService whichService)
-
getOntModelCache
OntModelCache getOntModelCache()
-
getShortTermCombinedTripleSource
ShortTermCombinedTripleSource getShortTermCombinedTripleSource(javax.servlet.http.HttpServletRequest req)
-
-