Add new method to ProteoCacheWS web service
[proteocache.git] / server / compbio / ws / jpred / jaxws / JobExistsResponse.java
diff --git a/server/compbio/ws/jpred/jaxws/JobExistsResponse.java b/server/compbio/ws/jpred/jaxws/JobExistsResponse.java
new file mode 100644 (file)
index 0000000..8ac68b1
--- /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 = "jobExistsResponse", namespace = "http://server.proteocache.ws")
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "jobExistsResponse", namespace = "http://server.proteocache.ws")
+public class JobExistsResponse {
+
+    @XmlElement(name = "return", namespace = "")
+    private int _return;
+
+    /**
+     * 
+     * @return
+     *     returns int
+     */
+    public int getReturn() {
+        return this._return;
+    }
+
+    /**
+     * 
+     * @param _return
+     *     the value for the _return property
+     */
+    public void setReturn(int _return) {
+        this._return = _return;
+    }
+
+}