X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=server%2Fcompbio%2Fws%2Fjpred%2Fjaxws%2FGetArchiveResponse.java;fp=server%2Fcompbio%2Fws%2Fjpred%2Fjaxws%2FGetArchiveResponse.java;h=ac6b0dbec1c1c3f76ca8a37c715578a33f95b2d9;hb=986f73f677c2e0cc6bc452d3f2e0cf9b7a4108aa;hp=0000000000000000000000000000000000000000;hpb=db6ea93133979ad97453a89fac0506b69d104ea6;p=proteocache.git diff --git a/server/compbio/ws/jpred/jaxws/GetArchiveResponse.java b/server/compbio/ws/jpred/jaxws/GetArchiveResponse.java new file mode 100644 index 0000000..ac6b0db --- /dev/null +++ b/server/compbio/ws/jpred/jaxws/GetArchiveResponse.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 = "getArchiveResponse", namespace = "http://server.proteocache.ws") +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "getArchiveResponse", namespace = "http://server.proteocache.ws") +public class GetArchiveResponse { + + @XmlElement(name = "return", namespace = "") + private String _return; + + /** + * + * @return + * returns String + */ + public String getReturn() { + return this._return; + } + + /** + * + * @param _return + * the value for the _return property + */ + public void setReturn(String _return) { + this._return = _return; + } + +}