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 = "getArchive", namespace = "http://server.proteocache.ws") @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "getArchive", namespace = "http://server.proteocache.ws") public class GetArchive { @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; } }