summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/szr/persondata/PostalAddressType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/szr/persondata/PostalAddressType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/szr/persondata/PostalAddressType.java174
1 files changed, 174 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/szr/persondata/PostalAddressType.java b/src/main/java/at/gv/util/xsd/szr/persondata/PostalAddressType.java
new file mode 100644
index 0000000..eb10a12
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/szr/persondata/PostalAddressType.java
@@ -0,0 +1,174 @@
+
+package at.gv.util.xsd.szr.persondata;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for PostalAddressType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="PostalAddressType">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="PostalCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="Municipality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="Locality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="StateCode3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="DeliveryAddress" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}DeliveryAddressType" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "PostalAddressType", propOrder = {
+ "postalCode",
+ "municipality",
+ "locality",
+ "stateCode3",
+ "deliveryAddress"
+})
+public class PostalAddressType {
+
+ @XmlElement(name = "PostalCode")
+ protected String postalCode;
+ @XmlElement(name = "Municipality")
+ protected String municipality;
+ @XmlElement(name = "Locality")
+ protected String locality;
+ @XmlElement(name = "StateCode3")
+ protected String stateCode3;
+ @XmlElement(name = "DeliveryAddress")
+ protected DeliveryAddressType deliveryAddress;
+
+ /**
+ * Gets the value of the postalCode property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getPostalCode() {
+ return postalCode;
+ }
+
+ /**
+ * Sets the value of the postalCode property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setPostalCode(String value) {
+ this.postalCode = value;
+ }
+
+ /**
+ * Gets the value of the municipality property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getMunicipality() {
+ return municipality;
+ }
+
+ /**
+ * Sets the value of the municipality property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setMunicipality(String value) {
+ this.municipality = value;
+ }
+
+ /**
+ * Gets the value of the locality property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getLocality() {
+ return locality;
+ }
+
+ /**
+ * Sets the value of the locality property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setLocality(String value) {
+ this.locality = value;
+ }
+
+ /**
+ * Gets the value of the stateCode3 property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getStateCode3() {
+ return stateCode3;
+ }
+
+ /**
+ * Sets the value of the stateCode3 property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setStateCode3(String value) {
+ this.stateCode3 = value;
+ }
+
+ /**
+ * Gets the value of the deliveryAddress property.
+ *
+ * @return
+ * possible object is
+ * {@link DeliveryAddressType }
+ *
+ */
+ public DeliveryAddressType getDeliveryAddress() {
+ return deliveryAddress;
+ }
+
+ /**
+ * Sets the value of the deliveryAddress property.
+ *
+ * @param value
+ * allowed object is
+ * {@link DeliveryAddressType }
+ *
+ */
+ public void setDeliveryAddress(DeliveryAddressType value) {
+ this.deliveryAddress = value;
+ }
+
+}