// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2010.06.29 at 05:04:10 PM MESZ // package slash.navigation.lmx.binding; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * The landmark address information type. Address is divided into fields, each of which * represent a part of address information. The order of fields is not specified. * * * <p>Java class for addressInfoType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="addressInfoType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="countryCode" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}token"> * <length value="2"/> * </restriction> * </simpleType> * </element> * <element name="state" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="county" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="district" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="postalCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="crossing1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="crossing2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="buildingName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="buildingZone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="buildingFloor" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="buildingRoom" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="extension" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="phoneNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </all> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "addressInfoType", propOrder = { }) public class AddressInfoType { protected String country; @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String countryCode; protected String state; protected String county; protected String city; protected String district; protected String postalCode; protected String crossing1; protected String crossing2; protected String street; protected String buildingName; protected String buildingZone; protected String buildingFloor; protected String buildingRoom; protected String extension; protected String phoneNumber; /** * Gets the value of the country property. * * @return * possible object is * {@link String } * */ public String getCountry() { return country; } /** * Sets the value of the country property. * * @param value * allowed object is * {@link String } * */ public void setCountry(String value) { this.country = value; } /** * Gets the value of the countryCode property. * * @return * possible object is * {@link String } * */ public String getCountryCode() { return countryCode; } /** * Sets the value of the countryCode property. * * @param value * allowed object is * {@link String } * */ public void setCountryCode(String value) { this.countryCode = value; } /** * Gets the value of the state property. * * @return * possible object is * {@link String } * */ public String getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link String } * */ public void setState(String value) { this.state = value; } /** * Gets the value of the county property. * * @return * possible object is * {@link String } * */ public String getCounty() { return county; } /** * Sets the value of the county property. * * @param value * allowed object is * {@link String } * */ public void setCounty(String value) { this.county = 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 district property. * * @return * possible object is * {@link String } * */ public String getDistrict() { return district; } /** * Sets the value of the district property. * * @param value * allowed object is * {@link String } * */ public void setDistrict(String value) { this.district = value; } /** * 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 crossing1 property. * * @return * possible object is * {@link String } * */ public String getCrossing1() { return crossing1; } /** * Sets the value of the crossing1 property. * * @param value * allowed object is * {@link String } * */ public void setCrossing1(String value) { this.crossing1 = value; } /** * Gets the value of the crossing2 property. * * @return * possible object is * {@link String } * */ public String getCrossing2() { return crossing2; } /** * Sets the value of the crossing2 property. * * @param value * allowed object is * {@link String } * */ public void setCrossing2(String value) { this.crossing2 = value; } /** * 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 buildingName property. * * @return * possible object is * {@link String } * */ public String getBuildingName() { return buildingName; } /** * Sets the value of the buildingName property. * * @param value * allowed object is * {@link String } * */ public void setBuildingName(String value) { this.buildingName = value; } /** * Gets the value of the buildingZone property. * * @return * possible object is * {@link String } * */ public String getBuildingZone() { return buildingZone; } /** * Sets the value of the buildingZone property. * * @param value * allowed object is * {@link String } * */ public void setBuildingZone(String value) { this.buildingZone = value; } /** * Gets the value of the buildingFloor property. * * @return * possible object is * {@link String } * */ public String getBuildingFloor() { return buildingFloor; } /** * Sets the value of the buildingFloor property. * * @param value * allowed object is * {@link String } * */ public void setBuildingFloor(String value) { this.buildingFloor = value; } /** * Gets the value of the buildingRoom property. * * @return * possible object is * {@link String } * */ public String getBuildingRoom() { return buildingRoom; } /** * Sets the value of the buildingRoom property. * * @param value * allowed object is * {@link String } * */ public void setBuildingRoom(String value) { this.buildingRoom = value; } /** * Gets the value of the extension property. * * @return * possible object is * {@link String } * */ public String getExtension() { return extension; } /** * Sets the value of the extension property. * * @param value * allowed object is * {@link String } * */ public void setExtension(String value) { this.extension = value; } /** * Gets the value of the phoneNumber property. * * @return * possible object is * {@link String } * */ public String getPhoneNumber() { return phoneNumber; } /** * Sets the value of the phoneNumber property. * * @param value * allowed object is * {@link String } * */ public void setPhoneNumber(String value) { this.phoneNumber = value; } }