[MOBY-guts] biomoby commit
Eddie Kawas
kawas at dev.open-bio.org
Tue Oct 21 16:36:09 UTC 2008
kawas
Tue Oct 21 12:36:09 EDT 2008
Update of /home/repository/moby/moby-live/Java/src/main/org/biomoby/client/rdf/vocabulary
In directory dev.open-bio.org:/tmp/cvs-serv21356/src/main/org/biomoby/client/rdf/vocabulary
Modified Files:
FetaVocabulary.java
Log Message:
committing revisons to the vocab that contain predicates for unit testing moby services.
moby-live/Java/src/main/org/biomoby/client/rdf/vocabulary FetaVocabulary.java,1.3,1.4
===================================================================
RCS file: /home/repository/moby/moby-live/Java/src/main/org/biomoby/client/rdf/vocabulary/FetaVocabulary.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- /home/repository/moby/moby-live/Java/src/main/org/biomoby/client/rdf/vocabulary/FetaVocabulary.java 2006/07/13 18:35:01 1.3
+++ /home/repository/moby/moby-live/Java/src/main/org/biomoby/client/rdf/vocabulary/FetaVocabulary.java 2008/10/21 16:36:09 1.4
@@ -3,7 +3,8 @@
package org.biomoby.client.rdf.vocabulary;
import com.hp.hpl.jena.rdf.model.*;
/**
- * @author Eddie
+ * @author Eddie Kawas
+ * @author Wendy Alexander
* <p>created Nov 10, 2005
* <p>This class encapsulates the vocabulary needed to interact with the myGrid ontology.
*/
@@ -73,6 +74,14 @@
public static final Resource operation;
public static final Resource organisation;
public static final Resource parameter;
+
+ // unit test predicates
+ public static final Property hasUnitTest;
+ public static final Resource unitTest;
+ public static final Property exampleInput;
+ public static final Property validOutputXML;
+ public static final Property validXPath;
+ public static final Property validREGEX;
static
{
@@ -133,5 +142,13 @@
simpleParameter = m_model.createResource(getURI() + "simpleParameter");
collectionParameter = m_model.createResource(getURI() + "collectionParameter");
secondaryParameter = m_model.createResource(getURI() + "secondaryParameter");
+
+ //unit test predicates
+ hasUnitTest = m_model.createProperty(getURI() + "hasUnitTest");
+ unitTest = m_model.createResource(getURI() + "unitTest");
+ exampleInput = m_model.createProperty(getURI() + "exampleInput");
+ validOutputXML = m_model.createProperty(getURI() + "validOutputXML");
+ validREGEX = m_model.createProperty(getURI() + "validREGEX");
+ validXPath = m_model.createProperty(getURI() + "validXPath");
}
}
More information about the MOBY-guts
mailing list