X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=server%2Fcompbio%2Fws%2Fjpred%2Fjaxws%2FJobExists.java;fp=server%2Fcompbio%2Fws%2Fjpred%2Fjaxws%2FJobExists.java;h=00a4a77a63c49e2f9790a692643281545e3b0dee;hb=3ffab52508e753a5486dc7ec20b3ff5b72b2604e;hp=0000000000000000000000000000000000000000;hpb=a800da3ae360d3b3430265ed5385056c16155b4c;p=proteocache.git diff --git a/server/compbio/ws/jpred/jaxws/JobExists.java b/server/compbio/ws/jpred/jaxws/JobExists.java new file mode 100644 index 0000000..00a4a77 --- /dev/null +++ b/server/compbio/ws/jpred/jaxws/JobExists.java @@ -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; + } + +}