java.lang.Object
org.apache.jena.fuseki.servlets.prefixes.PrefixesRDF
All Implemented Interfaces:
PrefixesAccess

public class PrefixesRDF extends Object implements PrefixesAccess
PrefixesAccess implementation using a dedicated DatasetGraph the record the prefixes in an RDF format.

The prefix-URI mappings are represented in blank nodes of type Prefix, with prefixName and prefixURI attributes.

 PREFIX prefixes: <http://jena.apache.org/prefixes#>
 PREFIX rdf:      <http://www.w3.org/1999/02/22-rdf-syntax-ns##>
 PREFIX xsd:      <http://www.w3.org/2001/XMLSchema##>

 [] rdf:type prefixes:Prefix ;
    prefixes:prefixName  "test" ;
    prefixes:prefixURI   "http://example/testPrefix#"^^xsd:anyURI
    .

 [ rdf:type prefixes:Prefix ;
   prefixes:prefixName   "ns" ;
   prefixes:prefixURI    "http://example/namespace#"^^xsd:anyURI
 ]