/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2011, Open Source Geospatial Foundation (OSGeo) * (C) 2004-2005, Open Geospatial Consortium Inc. * * All Rights Reserved. http://www.opengis.org/legal/ */ package org.opengis.metadata; import java.util.Collection; import org.opengis.metadata.citation.OnLineResource; import org.opengis.annotation.UML; import static org.opengis.annotation.Obligation.*; import static org.opengis.annotation.Specification.*; /** * Information describing metadata extensions. * * * @source $URL: http://svn.osgeo.org/geotools/trunk/modules/library/opengis/src/main/java/org/opengis/metadata/MetadataExtensionInformation.java $ * @version <A HREF="http://www.opengeospatial.org/standards/as#01-111">ISO 19115</A> * @author Martin Desruisseaux (IRD) * @since GeoAPI 2.0 */ @UML(identifier="MD_MetadataExtensionInformation", specification=ISO_19115) public interface MetadataExtensionInformation { /** * Information about on-line sources containing the community profile name and * the extended metadata elements. Information for all new metadata elements. * * @return On-line sources to community profile name and extended metadata elements. */ @UML(identifier="extensionOnLineResource", obligation=OPTIONAL, specification=ISO_19115) OnLineResource getExtensionOnLineResource(); /** * Provides information about a new metadata element, not found in ISO 19115, which is * required to describe geographic data. * * @return New metadata element not found in ISO 19115. */ @UML(identifier="extendedElementInformation", obligation=OPTIONAL, specification=ISO_19115) Collection<? extends ExtendedElementInformation> getExtendedElementInformation(); }