// false: not included to avoid cluttering the test output
if ( false ) {
Resource ontologyResource = ResourceFactory.createResource(vocabularyUri);
StmtIterator metadata = model.listStatements(ontologyResource, null, (RDFNode) null);
while ( metadata.hasNext() ) {
Statement stmt = metadata.nextStatement();
System.out.println("\t" +stmt.getPredicate()+ " -> " +stmt.getObject());
}
}
}