First working web service for quering proteocache DB
[proteocache.git] / server / compbio / ws / jpred / jaxws / FindSequence.java
1 package compbio.ws.jpred.jaxws;
2
3 import javax.xml.bind.annotation.XmlAccessType;
4 import javax.xml.bind.annotation.XmlAccessorType;
5 import javax.xml.bind.annotation.XmlElement;
6 import javax.xml.bind.annotation.XmlRootElement;
7 import javax.xml.bind.annotation.XmlType;
8
9 @XmlRootElement(name = "findSequence", namespace = "http://server.proteocache.ws")
10 @XmlAccessorType(XmlAccessType.FIELD)
11 @XmlType(name = "findSequence", namespace = "http://server.proteocache.ws", propOrder = { "sequence", "program", "version" })
12 public class FindSequence {
13
14         @XmlElement(name = "sequence", namespace = "")
15         private String sequence;
16         @XmlElement(name = "program", namespace = "")
17         private String program;
18         @XmlElement(name = "version", namespace = "")
19         private String version;
20
21         /**
22          * 
23          * @return returns String
24          */
25         public String getSequence() {
26                 System.out.println("FindSequence.setSequence: output sequence " + this.sequence);
27                 return this.sequence;
28         }
29
30         /**
31          * 
32          * @param sequence
33          *            the value for the sequence property
34          */
35         public void setSequence(String sequence) {
36                 System.out.println("FindSequence.setSequence: input sequence " + sequence);
37                 this.sequence = sequence;
38         }
39
40         /**
41          * 
42          * @return returns String
43          */
44         public String getProgram() {
45                 System.out.println("FindSequence.setProgram: output program " + this.program);
46                 return this.program;
47         }
48
49         /**
50          * 
51          * @param program
52          *            the value for the program property
53          */
54         public void setProgram(String program) {
55                 System.out.println("FindSequence.setProgram: input program " + program);
56                 this.program = program;
57         }
58
59         /**
60          * 
61          * @return returns String
62          */
63         public String getVersion() {
64                 System.out.println("FindSequence.setVersion: output version " + this.version);
65                 return this.version;
66         }
67
68         /**
69          * 
70          * @param version
71          *            the value for the version property
72          */
73         public void setVersion(String version) {
74                 System.out.println("FindSequence.setVersion: input version " + version);
75                 this.version = version;
76         }
77
78 }