Skip to content

Commit

Permalink
Document the name changes to expect with ISO 19157:2022.
Browse files Browse the repository at this point in the history
  • Loading branch information
desruisseaux committed Dec 2, 2022
1 parent c816d67 commit ef24048
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@
* @see CompletenessOmission
*
* @since 2.0
*
* @todo Renamed in 19157:2022: {@code Commission}.
*/
@UML(identifier="DQ_CompletenessCommission", specification=ISO_19157)
public interface CompletenessCommission extends Completeness {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@
* @see CompletenessCommission
*
* @since 2.0
*
* @todo Renamed in 19157:2022: {@code Omission}.
*/
@UML(identifier="DQ_CompletenessOmission", specification=ISO_19157)
public interface CompletenessOmission extends Completeness {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ default Lineage getLineage() {
* @return reference to an external standalone quality report, or {@code null} if none.
*
* @since 3.1
*
* @todo Renamed in 19157:2022: {@code QualityEvaluationReport}.
*/
@UML(identifier="standaloneQualityReport", obligation=OPTIONAL, specification=ISO_19157)
default StandaloneQualityReportInformation getStandaloneQualityReport() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@
* @author Martin Desruisseaux (Geomatys)
* @version 3.1
* @since 3.1
*
* @todo Renamed in 19157:2022: {@code MeasureDescription}.
*/
@UML(identifier="DQM_Description", specification=ISO_19157)
public interface Description {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@
* @author Alexis Gaillard (Geomatys)
* @version 3.1
* @since 2.0
*
* @todo Renamed in 19157:2022: {@code QualityElement}.
*/
@Classifier(Stereotype.ABSTRACT)
@UML(identifier="DQ_Element", specification=ISO_19157)
Expand All @@ -80,6 +82,8 @@ public interface Element {
* @return clause where this data quality element is described, or {@code null} if none.
*
* @since 3.1
*
* @todo Renamed in 19157:2022: {@code QualityEvaluationReportDetails}.
*/
@UML(identifier="standaloneQualityReportDetails", obligation=OPTIONAL, specification=ISO_19157)
default InternationalString getStandaloneQualityReportDetails() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ default Citation getEvaluationProcedure() {
* for avoiding abbreviation (a Java usage).
*/
@UML(identifier="referenceDoc", obligation=OPTIONAL, specification=ISO_19157)
default Collection <? extends Citation> getReferenceDocuments() {
default Collection<? extends Citation> getReferenceDocuments() {
return Collections.emptyList();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@
* @see Element#getMeasure()
*
* @since 3.1
*
* @todo Renamed in 19157:2022: {@code QualityMeasure}.
*/
@UML(identifier="DQM_Measure", specification=ISO_19157)
public interface Measure {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ public interface Metaquality extends Element {
* The returned collection shall contain exactly 1 element.
*
* @return the element that is derived.
*
* @todo Renamed in 19157:2022: {@code relatedQualityElement}.
*/
@Override
@UML(identifier="derivedElement", obligation=MANDATORY, specification=ISO_19157)
Expand Down
2 changes: 2 additions & 0 deletions geoapi/src/main/java/org/opengis/metadata/quality/Result.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@
* @see Element#getResults()
*
* @since 2.0
*
* @todo Renamed in 19157:2022: {@code QualityResult}.
*/
@Classifier(Stereotype.ABSTRACT)
@UML(identifier="DQ_Result", specification=ISO_19157)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,12 @@
* @author Martin Desruisseaux (Geomatys)
* @version 3.1
* @since 3.1
*
* @todo Renamed in 19157:2022: {@code QualityEvaluationReportInformation}.
*/
@UML(identifier="DQ_StandaloneQualityReportInformation", specification=ISO_19157)
public interface StandaloneQualityReportInformation {
/**
/**
* Reference to the associated standalone quality report.
*
* @return reference of the standalone quality report.
Expand Down

0 comments on commit ef24048

Please sign in to comment.