Interface ContextModelAccess
-
- All Known Implementing Classes:
ContextModelAccessImpl
public interface ContextModelAccessData structures on the context have fewer options than those on a request. There is no Preferred Language or Policy restrictions if there is no "current user".
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.jena.query.DatasetgetDataset()Get the Dataset for the CONTENT models.org.apache.jena.query.DatasetgetDataset(ModelAccess.WhichService which)Get the Dataset for either CONTENT or CONFIGURATION models.org.apache.jena.rdf.model.ModelMakergetModelMaker()Get the ModelMaker for the CONTENT models.org.apache.jena.rdf.model.ModelMakergetModelMaker(ModelAccess.WhichService which)Get the ModelMaker for either CONTENT or CONFIGURATION models.org.apache.jena.ontology.OntModelgetOntModel()Get the FULL_UNION OntModel.org.apache.jena.ontology.OntModelgetOntModel(String name)Get an OntModel by name.OntModelSelectorgetOntModelSelector()Get the ASSERTIONS_AND_INFERENCES OntModelSelector.OntModelSelectorgetOntModelSelector(ModelAccess.ReasoningOption option)Get an OntModelSelector based on ASSERTIONS, INFERENCES, or both.RDFServicegetRDFService()Get the RDFService for the CONTENT.RDFServicegetRDFService(ModelAccess.WhichService which)Get the RDFService for either CONTENT or CONFIGURATION models.WebappDaoFactorygetWebappDaoFactory()Get the ASSERTIONS_AND_INFERENCES WebappDaoFactory.WebappDaoFactorygetWebappDaoFactory(ModelAccess.ReasoningOption option)Get a WebappDaoFactory, based on ASSERTIONS, INFERENCES, or both.
-
-
-
Method Detail
-
getRDFService
RDFService getRDFService()
Get the RDFService for the CONTENT.
-
getRDFService
RDFService getRDFService(ModelAccess.WhichService which)
Get the RDFService for either CONTENT or CONFIGURATION models.
-
getDataset
org.apache.jena.query.Dataset getDataset()
Get the Dataset for the CONTENT models.
-
getDataset
org.apache.jena.query.Dataset getDataset(ModelAccess.WhichService which)
Get the Dataset for either CONTENT or CONFIGURATION models.
-
getModelMaker
org.apache.jena.rdf.model.ModelMaker getModelMaker()
Get the ModelMaker for the CONTENT models.
-
getModelMaker
org.apache.jena.rdf.model.ModelMaker getModelMaker(ModelAccess.WhichService which)
Get the ModelMaker for either CONTENT or CONFIGURATION models.
-
getOntModel
org.apache.jena.ontology.OntModel getOntModel()
Get the FULL_UNION OntModel.
-
getOntModel
org.apache.jena.ontology.OntModel getOntModel(String name)
Get an OntModel by name.
-
getOntModelSelector
OntModelSelector getOntModelSelector()
Get the ASSERTIONS_AND_INFERENCES OntModelSelector.
-
getOntModelSelector
OntModelSelector getOntModelSelector(ModelAccess.ReasoningOption option)
Get an OntModelSelector based on ASSERTIONS, INFERENCES, or both.
-
getWebappDaoFactory
WebappDaoFactory getWebappDaoFactory()
Get the ASSERTIONS_AND_INFERENCES WebappDaoFactory.
-
getWebappDaoFactory
WebappDaoFactory getWebappDaoFactory(ModelAccess.ReasoningOption option)
Get a WebappDaoFactory, based on ASSERTIONS, INFERENCES, or both.
-
-