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; } }