org.opengis.metadata.distribution.DigitalTransferOptions 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.distribution;
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.OnLineResource;
import org.opengis.util.InternationalString;
/**
* Technical means and media by which a resource is obtained from the distributor.
*
* @version ISO 19115
* @author Martin Desruisseaux (IRD)
* @author Cory Horner (Refractions Research)
* @since GeoAPI 2.0
*/
@Profile(level = CORE)
@UML(identifier = "MD_DigitalTransferOptions", specification = ISO_19115)
public interface DigitalTransferOptions {
/**
* Tiles, layers, geographic areas, etc., in which data is available.
*
* @return Tiles, layers, geographic areas, etc. in which data is available, or
* {@code null}.
*/
@UML(identifier = "unitsOfDistribution", obligation = OPTIONAL, specification = ISO_19115)
InternationalString getUnitsOfDistribution();
/**
* Estimated size of a unit in the specified transfer format, expressed in megabytes. The
* transfer size is > 0.0. Returns {@code null} if the transfer size is unknown.
*
* @return Estimated size of a unit in the specified transfer format in megabytes, or {@code
* null}.
*/
@UML(identifier = "transferSize", obligation = OPTIONAL, specification = ISO_19115)
Double getTransferSize();
/**
* Information about online sources from which the resource can be obtained.
*
* @return Online sources from which the resource can be obtained.
*/
@Profile(level = CORE)
@UML(identifier = "onLine", obligation = OPTIONAL, specification = ISO_19115)
Collection extends OnLineResource> getOnLines();
/**
* Information about offline media on which the resource can be obtained.
*
* @return offline media on which the resource can be obtained, or {@code null}.
*/
@UML(identifier = "offLine", obligation = OPTIONAL, specification = ISO_19115)
Medium getOffLine();
}