Module org.apache.jena.fuseki.core
Class PrefixesMap
java.lang.Object
org.apache.jena.fuseki.servlets.prefixes.PrefixesMap
- All Implemented Interfaces:
PrefixesAccess
PrefixesAccess
implementation using a PrefixMap
.
This is the implementation used by ActionPrefixesBase
which forms the way the prefixes operation is added to a Fuseki
service.-
Constructor Summary
ConstructorsConstructorDescriptionPrefixesMap
(org.apache.jena.riot.system.PrefixMap prefixMap, org.apache.jena.sparql.core.Transactional transactional) -
Method Summary
Modifier and TypeMethodDescriptionfetchPrefix
(String uri) Fetches the prefixes assigned to the provided URI.getAll()
void
removePrefix
(String prefixToRemove) org.apache.jena.sparql.core.Transactional
void
updatePrefix
(String prefix, String uri)
-
Constructor Details
-
PrefixesMap
public PrefixesMap(org.apache.jena.riot.system.PrefixMap prefixMap, org.apache.jena.sparql.core.Transactional transactional)
-
-
Method Details
-
transactional
public org.apache.jena.sparql.core.Transactional transactional()- Specified by:
transactional
in interfacePrefixesAccess
-
fetchURI
- Specified by:
fetchURI
in interfacePrefixesAccess
-
updatePrefix
- Specified by:
updatePrefix
in interfacePrefixesAccess
-
removePrefix
- Specified by:
removePrefix
in interfacePrefixesAccess
-
getAll
- Specified by:
getAll
in interfacePrefixesAccess
-
fetchPrefix
Description copied from interface:PrefixesAccess
Fetches the prefixes assigned to the provided URI. There can be multiple in the List.- Specified by:
fetchPrefix
in interfacePrefixesAccess
-