KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > rentacar > services > client > AddressVO


1
2 package org.objectweb.rentacar.services.client;
3
4 import javax.xml.bind.annotation.AccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlType;
7 import org.objectweb.rentacar.services.client.AddressVO;
8
9
10 /**
11  * <p>Java class for addressVO complex type.
12  *
13  * <p>The following schema fragment specifies the expected content contained within this class.
14  *
15  * <pre>
16  * &lt;complexType name="addressVO">
17  * &lt;complexContent>
18  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19  * &lt;sequence>
20  * &lt;element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21  * &lt;element name="addressId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22  * &lt;element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23  * &lt;element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24  * &lt;element name="zip" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25  * &lt;/sequence>
26  * &lt;/restriction>
27  * &lt;/complexContent>
28  * &lt;/complexType>
29  * </pre>
30  *
31  *
32  */

33 @XmlAccessorType(AccessType.FIELD)
34 @XmlType(name = "addressVO", propOrder = {
35     "address",
36     "addressId",
37     "city",
38     "country",
39     "zip"
40 })
41 public class AddressVO {
42
43     protected String JavaDoc address;
44     protected String JavaDoc addressId;
45     protected String JavaDoc city;
46     protected String JavaDoc country;
47     protected String JavaDoc zip;
48
49     /**
50      * Gets the value of the address property.
51      *
52      * @return
53      * possible object is
54      * {@link String }
55      *
56      */

57     public String JavaDoc getAddress() {
58         return address;
59     }
60
61     /**
62      * Sets the value of the address property.
63      *
64      * @param value
65      * allowed object is
66      * {@link String }
67      *
68      */

69     public void setAddress(String JavaDoc value) {
70         this.address = value;
71     }
72
73     /**
74      * Gets the value of the addressId property.
75      *
76      * @return
77      * possible object is
78      * {@link String }
79      *
80      */

81     public String JavaDoc getAddressId() {
82         return addressId;
83     }
84
85     /**
86      * Sets the value of the addressId property.
87      *
88      * @param value
89      * allowed object is
90      * {@link String }
91      *
92      */

93     public void setAddressId(String JavaDoc value) {
94         this.addressId = value;
95     }
96
97     /**
98      * Gets the value of the city property.
99      *
100      * @return
101      * possible object is
102      * {@link String }
103      *
104      */

105     public String JavaDoc getCity() {
106         return city;
107     }
108
109     /**
110      * Sets the value of the city property.
111      *
112      * @param value
113      * allowed object is
114      * {@link String }
115      *
116      */

117     public void setCity(String JavaDoc value) {
118         this.city = value;
119     }
120
121     /**
122      * Gets the value of the country property.
123      *
124      * @return
125      * possible object is
126      * {@link String }
127      *
128      */

129     public String JavaDoc getCountry() {
130         return country;
131     }
132
133     /**
134      * Sets the value of the country property.
135      *
136      * @param value
137      * allowed object is
138      * {@link String }
139      *
140      */

141     public void setCountry(String JavaDoc value) {
142         this.country = value;
143     }
144
145     /**
146      * Gets the value of the zip property.
147      *
148      * @return
149      * possible object is
150      * {@link String }
151      *
152      */

153     public String JavaDoc getZip() {
154         return zip;
155     }
156
157     /**
158      * Sets the value of the zip property.
159      *
160      * @param value
161      * allowed object is
162      * {@link String }
163      *
164      */

165     public void setZip(String JavaDoc value) {
166         this.zip = value;
167     }
168
169 }
170
Popular Tags