org.opengis.metadata.identification.Identification 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.
The 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.identification;
import static org.opengis.annotation.ComplianceLevel.*;
import static org.opengis.annotation.Obligation.*;
import static org.opengis.annotation.Specification.*;
import java.util.Collection;
import org.opengis.annotation.Profile;
import org.opengis.annotation.UML;
import org.opengis.metadata.citation.Citation;
import org.opengis.metadata.citation.ResponsibleParty;
import org.opengis.metadata.constraint.Constraints;
import org.opengis.metadata.distribution.Format;
import org.opengis.metadata.maintenance.MaintenanceInformation;
import org.opengis.util.InternationalString;
/**
* Basic information required to uniquely identify a resource or resources.
*
* @version ISO 19115
* @author Martin Desruisseaux (IRD)
* @author Cory Horner (Refractions Research)
* @since GeoAPI 2.0
*/
@Profile(level = CORE)
@UML(identifier = "MD_Identification", specification = ISO_19115)
public interface Identification {
/**
* Citation data for the resource(s).
*
* @return Citation data for the resource(s).
*/
@Profile(level = CORE)
@UML(identifier = "citation", obligation = MANDATORY, specification = ISO_19115)
Citation getCitation();
/**
* Brief narrative summary of the content of the resource(s).
*
* @return Brief narrative summary of the content.
*/
@Profile(level = CORE)
@UML(identifier = "abstract", obligation = MANDATORY, specification = ISO_19115)
InternationalString getAbstract();
/**
* Summary of the intentions with which the resource(s) was developed.
*
* @return The intentions with which the resource(s) was developed, or {@code null}.
*/
@UML(identifier = "purpose", obligation = OPTIONAL, specification = ISO_19115)
InternationalString getPurpose();
/**
* Recognition of those who contributed to the resource(s).
*
* @return Recognition of those who contributed to the resource(s).
*/
@UML(identifier = "credit", obligation = OPTIONAL, specification = ISO_19115)
Collection getCredits();
/**
* Status of the resource(s).
*
* @return Status of the resource(s), or {@code null}.
*/
@UML(identifier = "status", obligation = OPTIONAL, specification = ISO_19115)
Collection