Webservice works! but only supports some parameters. Replacing RNAstuct
[jabaws.git] / webservices / compbio / data / msa / jaxws / PresetFold.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 = "presetFold", namespace = "http://msa.data.compbio/01/01/2010/")
11 @XmlAccessorType(XmlAccessType.FIELD)
12 @XmlType(name = "presetFold", namespace = "http://msa.data.compbio/01/01/2010/", propOrder = {
13     "alignment",
14     "preset"
15 })
16 public class PresetFold {
17
18     @XmlElement(name = "alignment", namespace = "")
19     private compbio.data.sequence.Alignment alignment;
20     @XmlElement(name = "preset", namespace = "")
21     private compbio.metadata.Preset preset;
22
23     /**
24      * 
25      * @return
26      *     returns Alignment
27      */
28     public compbio.data.sequence.Alignment getAlignment() {
29         return this.alignment;
30     }
31
32     /**
33      * 
34      * @param alignment
35      *     the value for the alignment property
36      */
37     public void setAlignment(compbio.data.sequence.Alignment alignment) {
38         this.alignment = alignment;
39     }
40
41     /**
42      * 
43      * @return
44      *     returns Preset
45      */
46     public compbio.metadata.Preset getPreset() {
47         return this.preset;
48     }
49
50     /**
51      * 
52      * @param preset
53      *     the value for the preset property
54      */
55     public void setPreset(compbio.metadata.Preset preset) {
56         this.preset = preset;
57     }
58
59 }