Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9777 manish.sha 1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 
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: 2014.02.05 at 12:01:10 PM IST 
6
//
7
 
8
 
9
package com.amazonaws.mws.model;
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 anonymous complex type.
19
 * 
20
 * <p>The following schema fragment specifies the expected content contained within this class.
21
 * 
22
 * <pre>
23
 * &lt;complexType>
24
 *   &lt;complexContent>
25
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26
 *       &lt;sequence>
27
 *         &lt;element name="City" type="{http://www.w3.org/2001/XMLSchema}string"/>
28
 *         &lt;element name="State" type="{http://www.w3.org/2001/XMLSchema}string"/>
29
 *         &lt;element name="PostalCode" type="{http://www.w3.org/2001/XMLSchema}int"/>
30
 *         &lt;element name="Country" type="{http://www.w3.org/2001/XMLSchema}string"/>
31
 *       &lt;/sequence>
32
 *     &lt;/restriction>
33
 *   &lt;/complexContent>
34
 * &lt;/complexType>
35
 * </pre>
36
 * 
37
 * 
38
 */
39
@XmlAccessorType(XmlAccessType.FIELD)
40
@XmlType(name = "", propOrder = {
41
    "city",
42
    "state",
43
    "postalCode",
44
    "country"
45
})
46
public class Address {
47
 
48
    @XmlElement(name = "City", required = true)
49
    protected String city;
50
    @XmlElement(name = "State", required = true)
51
    protected String state;
52
    @XmlElement(name = "PostalCode")
53
    protected int postalCode;
54
    @XmlElement(name = "Country", required = true)
55
    protected String country;
56
 
57
    /**
58
     * Gets the value of the city property.
59
     * 
60
     * @return
61
     *     possible object is
62
     *     {@link String }
63
     *     
64
     */
65
    public String getCity() {
66
        return city;
67
    }
68
 
69
    /**
70
     * Sets the value of the city property.
71
     * 
72
     * @param value
73
     *     allowed object is
74
     *     {@link String }
75
     *     
76
     */
77
    public void setCity(String value) {
78
        this.city = value;
79
    }
80
 
81
    /**
82
     * Gets the value of the state property.
83
     * 
84
     * @return
85
     *     possible object is
86
     *     {@link String }
87
     *     
88
     */
89
    public String getState() {
90
        return state;
91
    }
92
 
93
    /**
94
     * Sets the value of the state property.
95
     * 
96
     * @param value
97
     *     allowed object is
98
     *     {@link String }
99
     *     
100
     */
101
    public void setState(String value) {
102
        this.state = value;
103
    }
104
 
105
    /**
106
     * Gets the value of the postalCode property.
107
     * 
108
     */
109
    public int getPostalCode() {
110
        return postalCode;
111
    }
112
 
113
    /**
114
     * Sets the value of the postalCode property.
115
     * 
116
     */
117
    public void setPostalCode(int value) {
118
        this.postalCode = 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 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 value) {
142
        this.country = value;
143
    }
144
 
145
}