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 DeliveryAddressType complex type. * *

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

 * <complexType name="DeliveryAddressType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="AddressLine" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="StreetName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="BuildingNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Unit" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="DoorNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeliveryAddressType", propOrder = { "addressLine", "streetName", "buildingNumber", "unit", "doorNumber" }) public class DeliveryAddressType { @XmlElement(name = "AddressLine") protected String addressLine; @XmlElement(name = "StreetName") protected String streetName; @XmlElement(name = "BuildingNumber") protected String buildingNumber; @XmlElement(name = "Unit") protected String unit; @XmlElement(name = "DoorNumber") protected String doorNumber; /** * Gets the value of the addressLine property. * * @return * possible object is * {@link String } * */ public String getAddressLine() { return addressLine; } /** * Sets the value of the addressLine property. * * @param value * allowed object is * {@link String } * */ public void setAddressLine(String value) { this.addressLine = value; } /** * Gets the value of the streetName property. * * @return * possible object is * {@link String } * */ public String getStreetName() { return streetName; } /** * Sets the value of the streetName property. * * @param value * allowed object is * {@link String } * */ public void setStreetName(String value) { this.streetName = value; } /** * Gets the value of the buildingNumber property. * * @return * possible object is * {@link String } * */ public String getBuildingNumber() { return buildingNumber; } /** * Sets the value of the buildingNumber property. * * @param value * allowed object is * {@link String } * */ public void setBuildingNumber(String value) { this.buildingNumber = value; } /** * Gets the value of the unit property. * * @return * possible object is * {@link String } * */ public String getUnit() { return unit; } /** * Sets the value of the unit property. * * @param value * allowed object is * {@link String } * */ public void setUnit(String value) { this.unit = value; } /** * Gets the value of the doorNumber property. * * @return * possible object is * {@link String } * */ public String getDoorNumber() { return doorNumber; } /** * Sets the value of the doorNumber property. * * @param value * allowed object is * {@link String } * */ public void setDoorNumber(String value) { this.doorNumber = value; } }