Webservice works! but only supports some parameters. Replacing RNAstuct
[jabaws.git] / webservices / compbio / data / msa / jaxws / PresetFoldResponse.java
1
2 package compbio.data.msa.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 = "presetFoldResponse", namespace = "http://msa.data.compbio/01/01/2010/")
11 @XmlAccessorType(XmlAccessType.FIELD)
12 @XmlType(name = "presetFoldResponse", namespace = "http://msa.data.compbio/01/01/2010/")
13 public class PresetFoldResponse {
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 }