1 5 6 package org.joseki.server; 7 8 import com.hp.hpl.jena.rdf.model.Model ; 9 import com.hp.hpl.jena.rdf.model.RDFException; 10 11 15 public interface QueryProcessor extends Processor 16 { 17 20 22 25 public Model execQuery(ModelSource aModel, String queryString, Request request) throws RDFException, QueryExecutionException ; 26 27 30 public Model execQuery(ModelSource aModel, Model queryModel, Request request) throws RDFException, QueryExecutionException ; 31 } 32 33 34 60 | Popular Tags |