org.opengis.metadata.citation.Telephone 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.citation;
import static org.opengis.annotation.Obligation.*;
import static org.opengis.annotation.Specification.*;
import java.util.Collection;
import org.opengis.annotation.UML;
/**
* Telephone numbers for contacting the responsible individual or organization.
*
* @version ISO 19115
* @author Martin Desruisseaux (IRD)
* @author Cory Horner (Refractions Research)
* @since GeoAPI 1.0
*/
@UML(identifier = "CI_Telephone", specification = ISO_19115)
public interface Telephone {
/**
* Telephone numbers by which individuals can speak to the responsible organization or
* individual.
*
* @return Telephone numbers by which individuals can speak to the responsible organization or
* individual.
* @since GeoAPI 2.1
*/
@UML(identifier = "voice", obligation = OPTIONAL, specification = ISO_19115)
Collection getVoices();
/**
* Telephone numbers of a facsimile machine for the responsible organization or individual.
*
* @return Telephone numbers of a facsimile machine for the responsible organization or
* individual.
* @since GeoAPI 2.1
*/
@UML(identifier = "facsimile", obligation = OPTIONAL, specification = ISO_19115)
Collection getFacsimiles();
}