Change JAXWS java code and wsdl for changed methods in RegistryWS
[jabaws.git] / webservices / compbio / data / msa / jaxws / GetNonoperatedServicesResponse.java
1
2 package compbio.data.msa.jaxws;
3
4 import java.util.Set;
5 import javax.xml.bind.annotation.XmlAccessType;
6 import javax.xml.bind.annotation.XmlAccessorType;
7 import javax.xml.bind.annotation.XmlElement;
8 import javax.xml.bind.annotation.XmlRootElement;
9 import javax.xml.bind.annotation.XmlType;
10
11 @XmlRootElement(name = "getNonoperatedServicesResponse", namespace = "http://msa.data.compbio/01/12/2010/")
12 @XmlAccessorType(XmlAccessType.FIELD)
13 @XmlType(name = "getNonoperatedServicesResponse", namespace = "http://msa.data.compbio/01/12/2010/")
14 public class GetNonoperatedServicesResponse {
15
16     @XmlElement(name = "return", namespace = "")
17     private Set<compbio.ws.client.Services> _return;
18
19     /**
20      * 
21      * @return
22      *     returns Set<Services>
23      */
24     public Set<compbio.ws.client.Services> getReturn() {
25         return this._return;
26     }
27
28     /**
29      * 
30      * @param _return
31      *     the value for the _return property
32      */
33     public void setReturn(Set<compbio.ws.client.Services> _return) {
34         this._return = _return;
35     }
36
37 }