On 12/11/12 13:34, Pierre LINDENBAUM wrote:
(cross posted on SO: http://stackoverflow.com/questions/13344429 )
where there's now an answer
I wrote an implementation of com.hp.hpl.jena.graph.impl.GraphBase
packagemygraph;import(...)publicclassMyGraphextendsGraphBase{publicMyGraph(){}@OverrideprotectedExtendedIterator<Triple>graphBaseFind(TripleMatchm
){return//(...)}}
now, I'd like to load this graph into Apache Fuseki.
I've read about the Assembler and the config (*.ttl) files but I'm lost.
How should I tell Fuzeki to add/load my graph to its dataset ?
Thanks,
Pierre