View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.9-03/31/2009 04:14 PM(snajper)-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: 2009.04.30 at 06:20:20 PM CEST 
6   //
7   
8   
9   package org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.rim;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlAttribute;
14  import javax.xml.bind.annotation.XmlType;
15  
16  
17  /**
18   * Mapping of the same named interface in ebRIM.
19   * 
20   * <p>Java class for PostalAddressType complex type.
21   * 
22   * <p>The following schema fragment specifies the expected content contained within this class.
23   * 
24   * <pre>
25   * &lt;complexType name="PostalAddressType">
26   *   &lt;complexContent>
27   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28   *       &lt;attribute name="city" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}ShortName" />
29   *       &lt;attribute name="country" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}ShortName" />
30   *       &lt;attribute name="postalCode" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}ShortName" />
31   *       &lt;attribute name="stateOrProvince" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}ShortName" />
32   *       &lt;attribute name="street" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}ShortName" />
33   *       &lt;attribute name="streetNumber" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}String32" />
34   *     &lt;/restriction>
35   *   &lt;/complexContent>
36   * &lt;/complexType>
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "PostalAddressType")
43  public class PostalAddressType {
44  
45      @XmlAttribute
46      protected String city;
47      @XmlAttribute
48      protected String country;
49      @XmlAttribute
50      protected String postalCode;
51      @XmlAttribute
52      protected String stateOrProvince;
53      @XmlAttribute
54      protected String street;
55      @XmlAttribute
56      protected String streetNumber;
57  
58      /**
59       * Gets the value of the city property.
60       * 
61       * @return
62       *     possible object is
63       *     {@link String }
64       *     
65       */
66      public String getCity() {
67          return city;
68      }
69  
70      /**
71       * Sets the value of the city property.
72       * 
73       * @param value
74       *     allowed object is
75       *     {@link String }
76       *     
77       */
78      public void setCity(String value) {
79          this.city = value;
80      }
81  
82      /**
83       * Gets the value of the country property.
84       * 
85       * @return
86       *     possible object is
87       *     {@link String }
88       *     
89       */
90      public String getCountry() {
91          return country;
92      }
93  
94      /**
95       * Sets the value of the country property.
96       * 
97       * @param value
98       *     allowed object is
99       *     {@link String }
100      *     
101      */
102     public void setCountry(String value) {
103         this.country = value;
104     }
105 
106     /**
107      * Gets the value of the postalCode property.
108      * 
109      * @return
110      *     possible object is
111      *     {@link String }
112      *     
113      */
114     public String getPostalCode() {
115         return postalCode;
116     }
117 
118     /**
119      * Sets the value of the postalCode property.
120      * 
121      * @param value
122      *     allowed object is
123      *     {@link String }
124      *     
125      */
126     public void setPostalCode(String value) {
127         this.postalCode = value;
128     }
129 
130     /**
131      * Gets the value of the stateOrProvince property.
132      * 
133      * @return
134      *     possible object is
135      *     {@link String }
136      *     
137      */
138     public String getStateOrProvince() {
139         return stateOrProvince;
140     }
141 
142     /**
143      * Sets the value of the stateOrProvince property.
144      * 
145      * @param value
146      *     allowed object is
147      *     {@link String }
148      *     
149      */
150     public void setStateOrProvince(String value) {
151         this.stateOrProvince = value;
152     }
153 
154     /**
155      * Gets the value of the street property.
156      * 
157      * @return
158      *     possible object is
159      *     {@link String }
160      *     
161      */
162     public String getStreet() {
163         return street;
164     }
165 
166     /**
167      * Sets the value of the street property.
168      * 
169      * @param value
170      *     allowed object is
171      *     {@link String }
172      *     
173      */
174     public void setStreet(String value) {
175         this.street = value;
176     }
177 
178     /**
179      * Gets the value of the streetNumber property.
180      * 
181      * @return
182      *     possible object is
183      *     {@link String }
184      *     
185      */
186     public String getStreetNumber() {
187         return streetNumber;
188     }
189 
190     /**
191      * Sets the value of the streetNumber property.
192      * 
193      * @param value
194      *     allowed object is
195      *     {@link String }
196      *     
197      */
198     public void setStreetNumber(String value) {
199         this.streetNumber = value;
200     }
201 
202 }