X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=server%2Fcompbio%2Fws%2Fjpred%2Fjaxws%2FFindJobForSequence.java;fp=server%2Fcompbio%2Fws%2Fjpred%2Fjaxws%2FFindJobForSequence.java;h=6142ff70d9234051fc4d0e586891d19dfebfb1f0;hb=986f73f677c2e0cc6bc452d3f2e0cf9b7a4108aa;hp=0000000000000000000000000000000000000000;hpb=db6ea93133979ad97453a89fac0506b69d104ea6;p=proteocache.git diff --git a/server/compbio/ws/jpred/jaxws/FindJobForSequence.java b/server/compbio/ws/jpred/jaxws/FindJobForSequence.java new file mode 100644 index 0000000..6142ff7 --- /dev/null +++ b/server/compbio/ws/jpred/jaxws/FindJobForSequence.java @@ -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; + } + +}