package org.talend.types.test.library.common._1; 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 StreetAddressType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="StreetAddressType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Street" type="{http://types.talend.org/test/Library/Common/1.0}StreetType" minOccurs="0"/> * <element name="HouseNumber" type="{http://types.talend.org/test/Library/Common/1.0}HouseNumberType" minOccurs="0"/> * <element name="ZIP" type="{http://types.talend.org/test/Library/Common/1.0}ZIPType"/> * <element name="City" type="{http://types.talend.org/test/Library/Common/1.0}CityType" minOccurs="0"/> * <element name="CountryID" type="{http://types.talend.org/test/Library/Common/1.0}IDType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StreetAddressType", propOrder = { "street", "houseNumber", "zip", "city", "countryID" }) public class StreetAddressType { @XmlElement(name = "Street") protected String street; @XmlElement(name = "HouseNumber") protected String houseNumber; @XmlElement(name = "ZIP", required = true) protected String zip; @XmlElement(name = "City") protected String city; @XmlElement(name = "CountryID", required = true) protected String countryID; /** * Gets the value of the street property. * * @return * possible object is * {@link String } * */ public String getStreet() { return street; } /** * Sets the value of the street property. * * @param value * allowed object is * {@link String } * */ public void setStreet(String value) { this.street = value; } /** * Gets the value of the houseNumber property. * * @return * possible object is * {@link String } * */ public String getHouseNumber() { return houseNumber; } /** * Sets the value of the houseNumber property. * * @param value * allowed object is * {@link String } * */ public void setHouseNumber(String value) { this.houseNumber = value; } /** * Gets the value of the zip property. * * @return * possible object is * {@link String } * */ public String getZIP() { return zip; } /** * Sets the value of the zip property. * * @param value * allowed object is * {@link String } * */ public void setZIP(String value) { this.zip = value; } /** * Gets the value of the city property. * * @return * possible object is * {@link String } * */ public String getCity() { return city; } /** * Sets the value of the city property. * * @param value * allowed object is * {@link String } * */ public void setCity(String value) { this.city = value; } /** * Gets the value of the countryID property. * * @return * possible object is * {@link String } * */ public String getCountryID() { return countryID; } /** * Sets the value of the countryID property. * * @param value * allowed object is * {@link String } * */ public void setCountryID(String value) { this.countryID = value; } }