org.opengis.metadata.maintenance.MaintenanceInformation 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.maintenance;
import static org.opengis.annotation.Obligation.*;
import static org.opengis.annotation.Specification.*;
import java.util.Collection;
import java.util.Date;
import org.opengis.annotation.UML;
import org.opengis.metadata.citation.ResponsibleParty;
import org.opengis.temporal.PeriodDuration;
import org.opengis.util.InternationalString;
/**
* Information about the scope and frequency of updating.
*
* @version ISO 19115
* @author Martin Desruisseaux (IRD)
* @author Cory Horner (Refractions Research)
* @since GeoAPI 2.0
*/
@UML(identifier = "MD_MaintenanceInformation", specification = ISO_19115)
public interface MaintenanceInformation {
/**
* Frequency with which changes and additions are made to the resource after the initial
* resource is completed.
*
* @return Frequency with which changes and additions are made to the resource.
*/
@UML(
identifier = "maintenanceAndUpdateFrequency",
obligation = MANDATORY,
specification = ISO_19115
)
MaintenanceFrequency getMaintenanceAndUpdateFrequency();
/**
* Scheduled revision date for resource.
*
* @return Scheduled revision date, or {@code null}.
*/
@UML(identifier = "dateOfNextUpdate", obligation = OPTIONAL, specification = ISO_19115)
Date getDateOfNextUpdate();
/**
* Maintenance period other than those defined.
*
* @return The Maintenance period, or {@code null}.
*/
@UML(
identifier = "userDefinedMaintenanceFrequency",
obligation = OPTIONAL,
specification = ISO_19115
)
PeriodDuration getUserDefinedMaintenanceFrequency();
/**
* Scope of data to which maintenance is applied.
*
* @return Scope of data to which maintenance is applied.
*/
@UML(identifier = "updateScope", obligation = OPTIONAL, specification = ISO_19115)
Collection getUpdateScopes();
/**
* Additional information about the range or extent of the resource.
*
* @return Additional information about the range or extent of the resource.
*/
@UML(identifier = "updateScopeDescription", obligation = OPTIONAL, specification = ISO_19115)
Collection extends ScopeDescription> getUpdateScopeDescriptions();
/**
* Information regarding specific requirements for maintaining the resource.
*
* @return Information regarding specific requirements for maintaining the resource.
* @since GeoAPI 2.1
*/
@UML(identifier = "maintenanceNote", obligation = OPTIONAL, specification = ISO_19115)
Collection extends InternationalString> getMaintenanceNotes();
/**
* Identification of, and means of communicating with, person(s) and organization(s) with
* responsibility for maintaining the metadata.
*
* @return Means of communicating with person(s) and organization(s) with responsibility for
* maintaining the metadata.
* @since GeoAPI 2.1
*/
@UML(identifier = "contact", obligation = OPTIONAL, specification = ISO_19115)
Collection extends ResponsibleParty> getContacts();
}