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.proteocache.ws") @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "findSequence", namespace = "http://server.proteocache.ws", propOrder = { "sequence", "program", "version" }) public class FindSequence { @XmlElement(name = "sequence", namespace = "") private String sequence; @XmlElement(name = "program", namespace = "") private String program; @XmlElement(name = "version", namespace = "") private String version; /** * * @return returns String */ public String getSequence() { System.out.println("FindSequence.setSequence: output sequence " + this.sequence); return this.sequence; } /** * * @param sequence * the value for the sequence property */ public void setSequence(String sequence) { System.out.println("FindSequence.setSequence: input sequence " + sequence); this.sequence = sequence; } /** * * @return returns String */ public String getProgram() { System.out.println("FindSequence.setProgram: output program " + this.program); return this.program; } /** * * @param program * the value for the program property */ public void setProgram(String program) { System.out.println("FindSequence.setProgram: input program " + program); this.program = program; } /** * * @return returns String */ public String getVersion() { System.out.println("FindSequence.setVersion: output version " + this.version); return this.version; } /** * * @param version * the value for the version property */ public void setVersion(String version) { System.out.println("FindSequence.setVersion: input version " + version); this.version = version; } }