Merge branch 'DAO'
[proteocache.git] / server / compbio / ws / jpred / jaxws / FindJobForSequence.java
diff --git a/server/compbio/ws/jpred/jaxws/FindJobForSequence.java b/server/compbio/ws/jpred/jaxws/FindJobForSequence.java
new file mode 100644 (file)
index 0000000..6142ff7
--- /dev/null
@@ -0,0 +1,80 @@
+
+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 = "findJobForSequence", namespace = "http://server.proteocache.ws")
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "findJobForSequence", namespace = "http://server.proteocache.ws", propOrder = {
+    "sequence",
+    "program",
+    "version"
+})
+public class FindJobForSequence {
+
+    @XmlElement(name = "sequence", namespace = "")
+    private String sequence;
+    @XmlElement(name = "program", namespace = "")
+    private String program;
+    @XmlElement(name = "version", namespace = "")
+    private String version;
+
+    /**
+     * 
+     * @return
+     *     returns String
+     */
+    public String getSequence() {
+        return this.sequence;
+    }
+
+    /**
+     * 
+     * @param sequence
+     *     the value for the sequence property
+     */
+    public void setSequence(String sequence) {
+        this.sequence = sequence;
+    }
+
+    /**
+     * 
+     * @return
+     *     returns String
+     */
+    public String getProgram() {
+        return this.program;
+    }
+
+    /**
+     * 
+     * @param program
+     *     the value for the program property
+     */
+    public void setProgram(String program) {
+        this.program = program;
+    }
+
+    /**
+     * 
+     * @return
+     *     returns String
+     */
+    public String getVersion() {
+        return this.version;
+    }
+
+    /**
+     * 
+     * @param version
+     *     the value for the version property
+     */
+    public void setVersion(String version) {
+        this.version = version;
+    }
+
+}