View Javadoc

1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.2-b01-fcs 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2007.04.05 at 10:47:13 AM CEST 
6   //
7   
8   
9   package com.amazon.webservices.awsecommerceservice._2007_04_04;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlElement;
14  import javax.xml.bind.annotation.XmlType;
15  
16  
17  /**
18   * <p>Java class for Address complex type.
19   * 
20   * <p>The following schema fragment specifies the expected content contained within this class.
21   * 
22   * <pre>
23   * &lt;complexType name="Address">
24   *   &lt;complexContent>
25   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26   *       &lt;sequence>
27   *         &lt;element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
28   *         &lt;element name="Address1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
29   *         &lt;element name="Address2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
30   *         &lt;element name="Address3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
31   *         &lt;element name="City" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
32   *         &lt;element name="State" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
33   *         &lt;element name="PostalCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
34   *         &lt;element name="Country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
35   *       &lt;/sequence>
36   *     &lt;/restriction>
37   *   &lt;/complexContent>
38   * &lt;/complexType>
39   * </pre>
40   * 
41   * 
42   */
43  @XmlAccessorType(XmlAccessType.FIELD)
44  @XmlType(name = "Address", propOrder = {
45      "name",
46      "address1",
47      "address2",
48      "address3",
49      "city",
50      "state",
51      "postalCode",
52      "country"
53  })
54  public class Address {
55  
56      @XmlElement(name = "Name")
57      protected String name;
58      @XmlElement(name = "Address1")
59      protected String address1;
60      @XmlElement(name = "Address2")
61      protected String address2;
62      @XmlElement(name = "Address3")
63      protected String address3;
64      @XmlElement(name = "City")
65      protected String city;
66      @XmlElement(name = "State")
67      protected String state;
68      @XmlElement(name = "PostalCode")
69      protected String postalCode;
70      @XmlElement(name = "Country")
71      protected String country;
72  
73      /**
74       * Gets the value of the name property.
75       * 
76       * @return
77       *     possible object is
78       *     {@link String }
79       *     
80       */
81      public String getName() {
82          return name;
83      }
84  
85      /**
86       * Sets the value of the name property.
87       * 
88       * @param value
89       *     allowed object is
90       *     {@link String }
91       *     
92       */
93      public void setName(String value) {
94          this.name = value;
95      }
96  
97      /**
98       * Gets the value of the address1 property.
99       * 
100      * @return
101      *     possible object is
102      *     {@link String }
103      *     
104      */
105     public String getAddress1() {
106         return address1;
107     }
108 
109     /**
110      * Sets the value of the address1 property.
111      * 
112      * @param value
113      *     allowed object is
114      *     {@link String }
115      *     
116      */
117     public void setAddress1(String value) {
118         this.address1 = value;
119     }
120 
121     /**
122      * Gets the value of the address2 property.
123      * 
124      * @return
125      *     possible object is
126      *     {@link String }
127      *     
128      */
129     public String getAddress2() {
130         return address2;
131     }
132 
133     /**
134      * Sets the value of the address2 property.
135      * 
136      * @param value
137      *     allowed object is
138      *     {@link String }
139      *     
140      */
141     public void setAddress2(String value) {
142         this.address2 = value;
143     }
144 
145     /**
146      * Gets the value of the address3 property.
147      * 
148      * @return
149      *     possible object is
150      *     {@link String }
151      *     
152      */
153     public String getAddress3() {
154         return address3;
155     }
156 
157     /**
158      * Sets the value of the address3 property.
159      * 
160      * @param value
161      *     allowed object is
162      *     {@link String }
163      *     
164      */
165     public void setAddress3(String value) {
166         this.address3 = value;
167     }
168 
169     /**
170      * Gets the value of the city property.
171      * 
172      * @return
173      *     possible object is
174      *     {@link String }
175      *     
176      */
177     public String getCity() {
178         return city;
179     }
180 
181     /**
182      * Sets the value of the city property.
183      * 
184      * @param value
185      *     allowed object is
186      *     {@link String }
187      *     
188      */
189     public void setCity(String value) {
190         this.city = value;
191     }
192 
193     /**
194      * Gets the value of the state property.
195      * 
196      * @return
197      *     possible object is
198      *     {@link String }
199      *     
200      */
201     public String getState() {
202         return state;
203     }
204 
205     /**
206      * Sets the value of the state property.
207      * 
208      * @param value
209      *     allowed object is
210      *     {@link String }
211      *     
212      */
213     public void setState(String value) {
214         this.state = value;
215     }
216 
217     /**
218      * Gets the value of the postalCode property.
219      * 
220      * @return
221      *     possible object is
222      *     {@link String }
223      *     
224      */
225     public String getPostalCode() {
226         return postalCode;
227     }
228 
229     /**
230      * Sets the value of the postalCode property.
231      * 
232      * @param value
233      *     allowed object is
234      *     {@link String }
235      *     
236      */
237     public void setPostalCode(String value) {
238         this.postalCode = value;
239     }
240 
241     /**
242      * Gets the value of the country property.
243      * 
244      * @return
245      *     possible object is
246      *     {@link String }
247      *     
248      */
249     public String getCountry() {
250         return country;
251     }
252 
253     /**
254      * Sets the value of the country property.
255      * 
256      * @param value
257      *     allowed object is
258      *     {@link String }
259      *     
260      */
261     public void setCountry(String value) {
262         this.country = value;
263     }
264 
265 }