X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=webservices%2Fcompbio%2Fdata%2Fmsa%2Fjaxws%2FGetLastTestedOnResponse.java;fp=webservices%2Fcompbio%2Fdata%2Fmsa%2Fjaxws%2FGetLastTestedOnResponse.java;h=379c2b9a59e8e65b251a097cbb3f0344d67c66bd;hb=175c6382f4b2838916a98a2d87f1a4fff0103ea6;hp=0000000000000000000000000000000000000000;hpb=42a09319d534bfc2e97fc0ddd256aefe4185841b;p=jabaws.git diff --git a/webservices/compbio/data/msa/jaxws/GetLastTestedOnResponse.java b/webservices/compbio/data/msa/jaxws/GetLastTestedOnResponse.java new file mode 100644 index 0000000..379c2b9 --- /dev/null +++ b/webservices/compbio/data/msa/jaxws/GetLastTestedOnResponse.java @@ -0,0 +1,37 @@ + +package compbio.data.msa.jaxws; + +import java.util.Date; +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 = "getLastTestedOnResponse", namespace = "http://msa.data.compbio/01/12/2010/") +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "getLastTestedOnResponse", namespace = "http://msa.data.compbio/01/12/2010/") +public class GetLastTestedOnResponse { + + @XmlElement(name = "return", namespace = "") + private Date _return; + + /** + * + * @return + * returns Date + */ + public Date getReturn() { + return this._return; + } + + /** + * + * @param _return + * the value for the _return property + */ + public void setReturn(Date _return) { + this._return = _return; + } + +}