/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2009, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.wmc.xml.v110; 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 AddressType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AddressType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="AddressType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Address" 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="StateOrProvince" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="PostCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AddressType", propOrder = { "addressType", "address", "city", "stateOrProvince", "postCode", "country" }) public class AddressType { @XmlElement(name = "AddressType") protected String addressType; @XmlElement(name = "Address") protected String address; @XmlElement(name = "City") protected String city; @XmlElement(name = "StateOrProvince") protected String stateOrProvince; @XmlElement(name = "PostCode") protected String postCode; @XmlElement(name = "Country") protected String country; /** * Gets the value of the addressType property. * * @return * possible object is * {@link String } * */ public String getAddressType() { return addressType; } /** * Sets the value of the addressType property. * * @param value * allowed object is * {@link String } * */ public void setAddressType(final String value) { this.addressType = value; } /** * Gets the value of the address property. * * @return * possible object is * {@link String } * */ public String getAddress() { return address; } /** * Sets the value of the address property. * * @param value * allowed object is * {@link String } * */ public void setAddress(final String value) { this.address = 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(final String value) { this.city = value; } /** * Gets the value of the stateOrProvince property. * * @return * possible object is * {@link String } * */ public String getStateOrProvince() { return stateOrProvince; } /** * Sets the value of the stateOrProvince property. * * @param value * allowed object is * {@link String } * */ public void setStateOrProvince(final String value) { this.stateOrProvince = value; } /** * Gets the value of the postCode property. * * @return * possible object is * {@link String } * */ public String getPostCode() { return postCode; } /** * Sets the value of the postCode property. * * @param value * allowed object is * {@link String } * */ public void setPostCode(final String value) { this.postCode = value; } /** * 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(final String value) { this.country = value; } }