From defceef8afef538555c13d33e344a89a828a3d97 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Fri, 20 Dec 2013 12:35:28 +0100 Subject: inital --- .../util/xsd/szr/persondata/PostalAddressType.java | 174 +++++++++++++++++++++ 1 file changed, 174 insertions(+) create mode 100644 src/main/java/at/gv/util/xsd/szr/persondata/PostalAddressType.java (limited to 'src/main/java/at/gv/util/xsd/szr/persondata/PostalAddressType.java') 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; + + +/** + *

Java class for PostalAddressType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="PostalAddressType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="PostalCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Municipality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="Locality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="StateCode3" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         <element name="DeliveryAddress" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}DeliveryAddressType" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@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; + } + +} -- cgit v1.2.3