KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > rentacar > agency > services > reservation > jaxws > ConsultCustomersResponse


1
2 package org.objectweb.rentacar.agency.services.reservation.jaxws;
3
4 import java.util.Set JavaDoc;
5 import javax.xml.bind.annotation.AccessType;
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 import org.objectweb.rentacar.agency.services.reservation.jaxws.ConsultCustomersResponse;
11
12 @XmlRootElement(name = "consultCustomersResponse", namespace = "http://reservation.services.agency.rentacar.objectweb.org/")
13 @XmlAccessorType(AccessType.FIELD)
14 @XmlType(name = "consultCustomersResponse", namespace = "http://reservation.services.agency.rentacar.objectweb.org/")
15 public class ConsultCustomersResponse {
16
17     @XmlElement(name = "return", namespace = "")
18     private Set JavaDoc _return;
19
20     /**
21      *
22      * @return
23      * returns Set
24      */

25     public Set JavaDoc get_return() {
26         return this._return;
27     }
28
29     /**
30      *
31      * @param _return
32      * the value for the _return property
33      */

34     public void set_return(Set JavaDoc _return) {
35         this._return = _return;
36     }
37
38 }
39
Popular Tags