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 = "findSequence", namespace = "http://server.ws.compbio") @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "findSequence", namespace = "http://server.ws.compbio") public class FindSequence { @XmlElement(name = "sequence", namespace = "") private String sequence; /** * * @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; } }