- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 05 Mar 2010 09:48:33 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/src/org/w3c/unicorn
In directory hutz:/tmp/cvs-serv25873/src/org/w3c/unicorn
Modified Files:
Framework.java
Log Message:
Removed RDFUnmarshallerJena initialization
Index: Framework.java
===================================================================
RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/Framework.java,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- Framework.java 4 Mar 2010 18:18:21 -0000 1.30
+++ Framework.java 5 Mar 2010 09:48:31 -0000 1.31
@@ -39,7 +39,6 @@
import org.w3c.unicorn.contract.WADLUnmarshallerXPath;
import org.w3c.unicorn.exceptions.InitializationFailedException;
import org.w3c.unicorn.exceptions.UnknownParserException;
-import org.w3c.unicorn.tasklist.RDFUnmarshallerJena;
import org.w3c.unicorn.tasklist.Task;
import org.w3c.unicorn.tasklist.TaskListUnmarshallerBeans;
import org.w3c.unicorn.tasklist.Tasklist;
@@ -52,8 +51,6 @@
import org.w3c.unicorn.util.UCNProperties;
import org.w3c.unicorn.response.Response;
-import com.hp.hpl.jena.rdf.model.Model;
-
/**
* Main class of the central module of UniCORN.
*
@@ -221,44 +218,6 @@
return null;
}
});
-
- // Initialize RDFUnmarshallerJena
- logger.debug("-------------------------------------------------------");
- logger.debug("Initializing RDFUnmarshallerJena");
-
- try {
- FileInputStream fis = new FileInputStream(Property.get("TASKLIST_RDF_MODEL"));
- RDFUnmarshallerJena.getModel().read(fis, null);
- logger.debug("> Used model: " + Property.get("TASKLIST_RDF_MODEL"));
- } catch (FileNotFoundException e) {
- logger.fatal("The tasklist rdf model could not be found: " + Property.get("TASKLIST_RDF_MODEL"));
- return;
- }
- Model model = RDFUnmarshallerJena.getModel();
- String namespace = RDFUnmarshallerJena.getUcnNamespace();
- // define resource use to find information into the RDF graph
- RDFUnmarshallerJena.setRESOURCE_TASK(model.getProperty(
- namespace + "Task"));
- // define property use to find information into the RDF graph
- RDFUnmarshallerJena.setPROPERTY_DESCRIPTION(model.getProperty(
- namespace + "description"));
- RDFUnmarshallerJena.setPROPERTY_HASPARAMETER(model.getProperty(
- namespace + "hasParameter"));
- RDFUnmarshallerJena.setPROPERTY_HASVALUE(model.getProperty(
- namespace + "hasValue"));
- RDFUnmarshallerJena.setPROPERTY_LONGNAME(model.getProperty(
- namespace + "longName"));
- RDFUnmarshallerJena.setPROPERTY_PARAMETER(model.getProperty(
- namespace + "parameter"));
- RDFUnmarshallerJena.setPROPERTY_REFERENCE(model.getProperty(
- namespace + "reference"));
- RDFUnmarshallerJena.setPROPERTY_DEFAULT(model.getProperty(
- namespace + "default"));
- RDFUnmarshallerJena.setPROPERTY_TYPE(model.getProperty(
- "http://www.w3.org/1999/02/22-rdf-syntax-ns#type"));
- RDFUnmarshallerJena.setPROPERTY_VALUE(model.getProperty(
- namespace + "value"));
- logger.info("OK - RDFUnmarshallerJena successfully initialized.");
}
@SuppressWarnings("unchecked")
Received on Friday, 5 March 2010 09:48:35 UTC