978ffeb5ac9f640b6b836c9d009eb18d56c23a63
[proteocache.git] / webapp / compbio / ws / jpred / jaxws / FindSequence.java
1
2 package compbio.ws.jpred.jaxws;
3
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9
10 @XmlRootElement(name = "findSequence", namespace = "http://server.ws.compbio")
11 @XmlAccessorType(XmlAccessType.FIELD)
12 @XmlType(name = "findSequence", namespace = "http://server.ws.compbio")
13 public class FindSequence {
14
15     @XmlElement(name = "sequence", namespace = "")
16     private String sequence;
17
18     /**
19      * 
20      * @return
21      *     returns String
22      */
23     public String getSequence() {
24         return this.sequence;
25     }
26
27     /**
28      * 
29      * @param sequence
30      *     the value for the sequence property
31      */
32     public void setSequence(String sequence) {
33         this.sequence = sequence;
34     }
35
36 }