/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2010, 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.xal.model; import java.util.List; /** * <p>This interface maps DependentLocalityType type.</p> * * <pre> * <xs:complexType name="DependentLocalityType"> * <xs:sequence> * <xs:element ref="AddressLine" minOccurs="0" maxOccurs="unbounded"/> * <xs:element name="DependentLocalityName" minOccurs="0" maxOccurs="unbounded">... * </xs:element> * <xs:element name="DependentLocalityNumber" minOccurs="0">... * </xs:element> * <xs:choice minOccurs="0"> * <xs:element ref="PostBox"/> * <xs:element name="LargeMailUser" type="LargeMailUserType">... * </xs:element> * <xs:element ref="PostOffice"/> * <xs:element name="PostalRoute" type="PostalRouteType">... * </xs:element> * </xs:choice> * <xs:element ref="Thoroughfare" minOccurs="0"/> * <xs:element ref="Premise" minOccurs="0"/> * <xs:element name="DependentLocality" type="DependentLocalityType" minOccurs="0">... * </xs:element> * <xs:element ref="PostalCode" minOccurs="0"/> * <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded"/> * </xs:sequence> * <xs:attribute name="Type">... * </xs:attribute> * <xs:attribute name="UsageType">... * </xs:attribute> * <xs:attribute name="Connector">... * </xs:attribute> * <xs:attribute name="Indicator">... * </xs:attribute> * <xs:anyAttribute namespace="##other"/> * </xs:complexType> * </pre> * * @author Samuel Andrés * @module */ public interface DependentLocality { /** * * @return */ List<GenericTypedGrPostal> getAddressLines(); /** * * @param addressLines */ void setAddressLines(List<GenericTypedGrPostal> addressLines); /** * <p>Name of the dependent locality.</p> * * @return */ List<GenericTypedGrPostal> getDependentLocalityNames(); /** * * @param dependentLocalityNames */ void setDependentLocalityNames(List<GenericTypedGrPostal> dependentLocalityNames); /** * * @return */ DependentLocalityNumber getDependentLocalityNumber(); /** * * @param dependentLocalityNumber */ void setDependentLocalityNumber(DependentLocalityNumber dependentLocalityNumber); /* * === CHOICE: === */ /** * * @return */ PostBox getPostBox(); /** * * @param postBox */ void setPostBox(PostBox postBox); /** * <p>Specification of a large mail user address. * Examples of large mail users are postal companies, * companies in France with a cedex number, * hospitals and airports with their own post code. * Large mail user addresses do not have a street name with premise name * or premise number in countries like Netherlands. * But they have a POBox and street also in countries like France.</p> * * @return */ LargeMailUser getLargeMailUser(); /** * * @param largeMailUser */ void setLargeMailUser(LargeMailUser largeMailUser); /** * * @return */ PostOffice getPostOffice(); /** * * @param postOffice */ void setPostOffice(PostOffice postOffice); /** * <p>A Postal van is specific for a route as in Israel, Rural route.</p> * * @return */ PostalRoute getPostalRoute(); /** * * @param postalRoute */ void setPostalRoute(PostalRoute postalRoute); /* * === END OF CHOICE === */ /** * * @return */ Thoroughfare getThoroughfare(); /** * * @param thoroughfare */ void setThoroughfare(Thoroughfare thoroughfare); /** * * @return */ Premise getPremise(); /** * * @param premise */ void setPremise(Premise premise); /** * <p>Dependent localities are Districts within cities/towns, locality divisions, * postal divisions of cities, suburbs, etc. * DependentLocality is a recursive element, but no nesting deeper than two exists * (Locality-DependentLocality-DependentLocality).</p> * * @return */ DependentLocality getDependentLocality(); /** * * @param dependentLocality */ void setDependentLocality(DependentLocality dependentLocality); /** * * @return */ PostalCode getPostalCode(); /** * * @param postalCode */ void setPostalCode(PostalCode postalCode); /* * === ATTRIBUTES === */ /** * <p>City or IndustrialEstate, etc.</p> * * @return */ String getType(); /** * * @param type */ void setType(String type); /** * <p>Postal or Political - * Sometimes locations must be distinguished between postal system, * and physical locations as defined by a political system.</p> * * @return */ String getUsageType(); /** * * @param usageType */ void setUsageType(String usageType); /** * <p>"VIA" as in Hill Top VIA Parish where Parish is a locality * and Hill Top is a dependent locality.</p> * * @return */ String getConnector(); /** * * @param connector */ void setConnector(String connector); /** * <p>Eg. Erode (Dist) where (Dist) is the Indicator.</p> * * @return */ String getIndicator(); /** * * @param indicator */ void setIndicator(String indicator); }