Fixes to test cases
[jabaws.git] / webservices / compbio / data / msa / jaxws / GetAnnotationResponse.java
1 \r
2 package compbio.data.msa.jaxws;\r
3 \r
4 import java.util.HashMap;\r
5 import java.util.HashSet;\r
6 import javax.xml.bind.annotation.XmlAccessType;\r
7 import javax.xml.bind.annotation.XmlAccessorType;\r
8 import javax.xml.bind.annotation.XmlElement;\r
9 import javax.xml.bind.annotation.XmlRootElement;\r
10 import javax.xml.bind.annotation.XmlType;\r
11 \r
12 @XmlRootElement(name = "getAnnotationResponse", namespace = "http://msa.data.compbio/01/12/2010/")\r
13 @XmlAccessorType(XmlAccessType.FIELD)\r
14 @XmlType(name = "getAnnotationResponse", namespace = "http://msa.data.compbio/01/12/2010/")\r
15 public class GetAnnotationResponse {\r
16 \r
17     @XmlElement(name = "return", namespace = "")\r
18     private HashMap<String, HashSet<compbio.data.sequence.Score>> _return;\r
19 \r
20     /**\r
21      * \r
22      * @return\r
23      *     returns HashMap<String,HashSet<Score>>\r
24      */\r
25     public HashMap<String, HashSet<compbio.data.sequence.Score>> getReturn() {\r
26         return this._return;\r
27     }\r
28 \r
29     /**\r
30      * \r
31      * @param _return\r
32      *     the value for the _return property\r
33      */\r
34     public void setReturn(HashMap<String, HashSet<compbio.data.sequence.Score>> _return) {\r
35         this._return = _return;\r
36     }\r
37 \r
38 }\r