First working web service for quering proteocache DB
[proteocache.git] / server / compbio / ws / jpred / jaxws / FindSequenceResponse.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 = "findSequenceResponse", namespace = "http://server.proteocache.ws")
11 @XmlAccessorType(XmlAccessType.FIELD)
12 @XmlType(name = "findSequenceResponse", namespace = "http://server.proteocache.ws")
13 public class FindSequenceResponse {
14
15     @XmlElement(name = "return", namespace = "")
16     private String _return;
17
18     /**
19      * 
20      * @return
21      *     returns String
22      */
23     public String getReturn() {
24         return this._return;
25     }
26
27     /**
28      * 
29      * @param _return
30      *     the value for the _return property
31      */
32     public void setReturn(String _return) {
33         this._return = _return;
34     }
35
36 }