Merge branch 'DAO'
[proteocache.git] / server / compbio / ws / jpred / jaxws / FindJobForSequence.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 = "findJobForSequence", namespace = "http://server.proteocache.ws")
11 @XmlAccessorType(XmlAccessType.FIELD)
12 @XmlType(name = "findJobForSequence", namespace = "http://server.proteocache.ws", propOrder = {
13     "sequence",
14     "program",
15     "version"
16 })
17 public class FindJobForSequence {
18
19     @XmlElement(name = "sequence", namespace = "")
20     private String sequence;
21     @XmlElement(name = "program", namespace = "")
22     private String program;
23     @XmlElement(name = "version", namespace = "")
24     private String version;
25
26     /**
27      * 
28      * @return
29      *     returns String
30      */
31     public String getSequence() {
32         return this.sequence;
33     }
34
35     /**
36      * 
37      * @param sequence
38      *     the value for the sequence property
39      */
40     public void setSequence(String sequence) {
41         this.sequence = sequence;
42     }
43
44     /**
45      * 
46      * @return
47      *     returns String
48      */
49     public String getProgram() {
50         return this.program;
51     }
52
53     /**
54      * 
55      * @param program
56      *     the value for the program property
57      */
58     public void setProgram(String program) {
59         this.program = program;
60     }
61
62     /**
63      * 
64      * @return
65      *     returns String
66      */
67     public String getVersion() {
68         return this.version;
69     }
70
71     /**
72      * 
73      * @param version
74      *     the value for the version property
75      */
76     public void setVersion(String version) {
77         this.version = version;
78     }
79
80 }