org.opengis.metadata.ApplicationSchemaInformation 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;
import static org.opengis.annotation.Obligation.*;
import static org.opengis.annotation.Specification.*;
import java.net.URI;
import org.opengis.annotation.UML;
import org.opengis.metadata.citation.Citation;
/**
* Information about the application schema used to build the dataset.
*
* @version ISO 19115
* @author Martin Desruisseaux (IRD)
* @since GeoAPI 2.0
*/
@UML(identifier = "MD_ApplicationSchemaInformation", specification = ISO_19115)
public interface ApplicationSchemaInformation {
/**
* Name of the application schema used.
*
* @return Name of the application schema.
*/
@UML(identifier = "name", obligation = MANDATORY, specification = ISO_19115)
Citation getName();
/**
* Identification of the schema language used.
*
* @return The schema language used.
*/
@UML(identifier = "schemaLanguage", obligation = MANDATORY, specification = ISO_19115)
String getSchemaLanguage();
/**
* Formal language used in Application Schema.
*
* @return Formal language used in Application Schema.
*/
@UML(identifier = "constraintLanguage", obligation = MANDATORY, specification = ISO_19115)
String getConstraintLanguage();
/**
* Full application schema given as an ASCII file.
*
* @return Application schema as an ASCII file.
* @todo In UML, the type was {@code CharacterString}. It is not clear if it should be the file
* name or the file content.
*/
@UML(identifier = "schemaAscii", obligation = OPTIONAL, specification = ISO_19115)
URI getSchemaAscii();
/**
* Full application schema given as a graphics file.
*
* @return Application schema as a graphics file.
*/
@UML(identifier = "graphicsFile", obligation = OPTIONAL, specification = ISO_19115)
URI getGraphicsFile();
/**
* Full application schema given as a software development file.
*
* @return Application schema as a software development file.
* @todo In UML, the type was {@code binary}. It is not clear if it was intented to be the file
* content.
*/
@UML(identifier = "softwareDevelopmentFile", obligation = OPTIONAL, specification = ISO_19115)
URI getSoftwareDevelopmentFile();
/**
* Software dependent format used for the application schema software dependent file.
*
* @return Format used for the application schema software file.
*/
@UML(
identifier = "softwareDevelopmentFileFormat",
obligation = OPTIONAL,
specification = ISO_19115
)
String getSoftwareDevelopmentFileFormat();
}