/* * 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.quality; import org.opengis.util.InternationalString; import org.opengis.metadata.citation.Citation; import org.opengis.annotation.UML; import static org.opengis.annotation.Obligation.*; import static org.opengis.annotation.Specification.*; /** * Information about the outcome of evaluating the obtained value (or set of values) against * a specified acceptable conformance quality level. * * * @source $URL: http://svn.osgeo.org/geotools/trunk/modules/library/opengis/src/main/java/org/opengis/metadata/quality/ConformanceResult.java $ * @version <A HREF="http://www.opengeospatial.org/standards/as#01-111">ISO 19115</A> * @author Martin Desruisseaux (IRD) * @author Cory Horner (Refractions Research) * @since GeoAPI 2.0 */ @UML(identifier="DQ_ConformanceResult", specification=ISO_19115) public interface ConformanceResult extends Result { /** * Citation of product specification or user requirement against which data is being evaluated. * * @return Citation of product specification or user requirement. */ @UML(identifier="specification", obligation=MANDATORY, specification=ISO_19115) Citation getSpecification(); /** * Explanation of the meaning of conformance for this result. * * @return Explanation of the meaning of conformance. */ @UML(identifier="explanation", obligation=MANDATORY, specification=ISO_19115) InternationalString getExplanation(); /** * Indication of the conformance result. * * @return Indication of the conformance result. */ @UML(identifier="pass", obligation=MANDATORY, specification=ISO_19115) boolean pass(); }