org.opengis.metadata.MetadataExtensionInformation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gt-opengis Show documentation
Show all versions of gt-opengis Show documentation
Standard interfaces implemented throughout the library.
/*
* 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 static org.opengis.annotation.Obligation.*;
import static org.opengis.annotation.Specification.*;
import java.util.Collection;
import org.opengis.annotation.UML;
import org.opengis.metadata.citation.OnLineResource;
/**
* Information describing metadata extensions.
*
* @version ISO 19115
* @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();
}