This HTML5 document contains 29 embedded RDF statements represented using HTML+Microdata notation.

The embedded RDF content will be recognized by any processor of HTML5 Microdata.

PrefixNamespace IRI
dctermshttp://purl.org/dc/terms/
atomhttp://atomowl.org/ontologies/atomrdf#
foafhttp://xmlns.com/foaf/0.1/
n11http://vos.openlinksw.com/dataspace/services/wiki/
oplhttp://www.openlinksw.com/schema/attribution#
n2http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/
dchttp://purl.org/dc/elements/1.1/
n17http://vos.openlinksw.com/dataspace/dav#
rdfshttp://www.w3.org/2000/01/rdf-schema#
n16http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/VirtJenaSPARQLExample7/sioc.
n10http://rdfs.org/sioc/services#
n13http://vos.openlinksw.com/dataspace/person/dav#
siocthttp://rdfs.org/sioc/types#
n4http://vos.openlinksw.com/dataspace/owiki/wiki/
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n6http://vos.openlinksw.com/dataspace/owiki#
xsdhhttp://www.w3.org/2001/XMLSchema#
n18http://vos.openlinksw.com/dataspace/person/owiki#
siochttp://rdfs.org/sioc/ns#
Subject Item
n13:this
foaf:made
n2:VirtJenaSPARQLExample7
Subject Item
n17:this
sioc:creator_of
n2:VirtJenaSPARQLExample7
Subject Item
n11:item
n10:services_of
n2:VirtJenaSPARQLExample7
Subject Item
n6:this
sioc:creator_of
n2:VirtJenaSPARQLExample7
Subject Item
n4:VOS
sioc:container_of
n2:VirtJenaSPARQLExample7
atom:entry
n2:VirtJenaSPARQLExample7
atom:contains
n2:VirtJenaSPARQLExample7
Subject Item
n2:VirtJenaSPARQLExample7
rdf:type
sioct:Comment atom:Entry
dcterms:created
2017-06-13T05:36:29.290483
dcterms:modified
2017-06-13T05:36:29.290483
rdfs:label
VirtJenaSPARQLExample7
foaf:maker
n13:this n18:this
dc:title
VirtJenaSPARQLExample7
opl:isDescribedUsing
n16:rdf
sioc:has_creator
n6:this n17:this
sioc:content
%META:TOPICPARENT{name="VirtJenaProvider"}% %VOSWARNING% ---+ Virtuoso Jena Provider - SPARQL Example 7 <verbatim> import java.util.*; import com.hp.hpl.jena.query.*; import com.hp.hpl.jena.util.iterator.ExtendedIterator; import com.hp.hpl.jena.graph.Node; import com.hp.hpl.jena.graph.Triple; import virtuoso.jena.driver.*; public class VirtuosoSPARQLExample7 { public static void main(String[] args) { String url; if(args.length == 0) url = "jdbc:virtuoso://localhost:1111"; else url = args[0]; Node foo1 = Node.createURI("http://example.org/#foo1"); Node bar1 = Node.createURI("http://example.org/#bar1"); Node baz1 = Node.createURI("http://example.org/#baz1"); Node foo2 = Node.createURI("http://example.org/#foo2"); Node bar2 = Node.createURI("http://example.org/#bar2"); Node baz2 = Node.createURI("http://example.org/#baz2"); Node foo3 = Node.createURI("http://example.org/#foo3"); Node bar3 = Node.createURI("http://example.org/#bar3"); Node baz3 = Node.createURI("http://example.org/#baz3"); List triples1 = new ArrayList(); triples1.add(new Triple(foo1, bar1, baz1)); triples1.add(new Triple(foo2, bar2, baz2)); triples1.add(new Triple(foo3, bar3, baz3)); List triples2 = new ArrayList(); triples2.add(new Triple(foo1, bar1, baz1)); triples2.add(new Triple(foo2, bar2, baz2)); VirtGraph graph = new VirtGraph ("Example7", url, "dba", "dba"); graph.clear (); System.out.println("graph.isEmpty() = " + graph.isEmpty()); System.out.println("Add List with 3 triples to graph <Example7> via BulkUpdateHandler."); graph.getBulkUpdateHandler().add(triples1); System.out.println("graph.isEmpty() = " + graph.isEmpty()); System.out.println("graph.getCount() = " + graph.getCount()); ExtendedIterator iter = graph.find(Node.ANY, Node.ANY, Node.ANY); System.out.println ("\ngraph.find(Node.ANY, Node.ANY, Node.ANY) \nResult:"); for ( ; iter.hasNext() ; ) System.out.println ((Triple) iter.next()); System.out.println("\n\nDelete List of 2 triples from graph <Example7> via BulkUpdateHandler."); graph.getBulkUpdateHandler().delete(triples2); System.out.println("graph.isEmpty() = " + graph.isEmpty()); System.out.println("graph.getCount() = " + graph.getCount()); iter = graph.find(Node.ANY, Node.ANY, Node.ANY); System.out.println ("\ngraph.find(Node.ANY, Node.ANY, Node.ANY) \nResult:"); for ( ; iter.hasNext() ; ) System.out.println ((Triple) iter.next()); graph.clear (); System.out.println("\nCLEAR graph <Example7>"); } } </verbatim>
sioc:id
b75c36dfbc4f04f4d004cf602b6f893c
sioc:link
n2:VirtJenaSPARQLExample7
sioc:has_container
n4:VOS
n10:has_services
n11:item
atom:title
VirtJenaSPARQLExample7
atom:source
n4:VOS
atom:author
n13:this
atom:published
2017-06-13T05:36:29Z
atom:updated
2017-06-13T05:36:29Z
sioc:topic
n4:VOS