Add new method to ProteoCacheWS web service
[proteocache.git] / server / compbio / ws / jpred / jaxws / JobExists.java
diff --git a/server/compbio/ws/jpred/jaxws/JobExists.java b/server/compbio/ws/jpred/jaxws/JobExists.java
new file mode 100644 (file)
index 0000000..00a4a77
--- /dev/null
@@ -0,0 +1,36 @@
+
+package compbio.ws.jpred.jaxws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+import javax.xml.bind.annotation.XmlType;
+
+@XmlRootElement(name = "jobExists", namespace = "http://server.proteocache.ws")
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "jobExists", namespace = "http://server.proteocache.ws")
+public class JobExists {
+
+    @XmlElement(name = "job", namespace = "")
+    private String job;
+
+    /**
+     * 
+     * @return
+     *     returns String
+     */
+    public String getJob() {
+        return this.job;
+    }
+
+    /**
+     * 
+     * @param job
+     *     the value for the job property
+     */
+    public void setJob(String job) {
+        this.job = job;
+    }
+
+}