All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opengis.metadata.MetadataExtensionInformation Maven / Gradle / Ivy

There is a newer version: 24.2-oss84-1
Show newest version
/*
 *    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 getExtendedElementInformation();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy