This is an automated email from the ASF dual-hosted git repository. desruisseaux pushed a commit to branch geoapi-4.0 in repository https://gitbox.apache.org/repos/asf/sis.git
commit ce531ec222e610a0245c8657b1b04778700224c1 Author: Martin Desruisseaux <[email protected]> AuthorDate: Fri Jul 6 16:45:00 2018 +0200 Correction in copyright year and in a metadata hierarchy that need to be taken in account when storing legacy metadata. --- NOTICE | 2 +- .../src/main/java/org/apache/sis/metadata/sql/TableHierarchy.java | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/NOTICE b/NOTICE index 41cd08c..d3abb67 100644 --- a/NOTICE +++ b/NOTICE @@ -1,5 +1,5 @@ Apache Spatial Information System (SIS) -Copyright 2010-2017 The Apache Software Foundation +Copyright 2010-2018 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/). diff --git a/core/sis-metadata/src/main/java/org/apache/sis/metadata/sql/TableHierarchy.java b/core/sis-metadata/src/main/java/org/apache/sis/metadata/sql/TableHierarchy.java index f601c5d..4f1f8ac 100644 --- a/core/sis-metadata/src/main/java/org/apache/sis/metadata/sql/TableHierarchy.java +++ b/core/sis-metadata/src/main/java/org/apache/sis/metadata/sql/TableHierarchy.java @@ -25,7 +25,10 @@ import org.apache.sis.util.iso.Types; * Utility methods for handling the inheritance between tables. * This features is partially supported in PostgreSQL database. * - * @author desruisseaux + * @author Martin Desruisseaux (Geomatys) + * @version 1.0 + * @since 1.0 + * @module */ final class TableHierarchy { /** @@ -52,6 +55,7 @@ final class TableHierarchy { static { add("CI_Individual", "ind"); add("CI_Organisation", "org"); + add("CI_ResponsibleParty", "rp"); add("MD_VectorSpatialRepresentation", "vec"); add("MD_GridSpatialRepresentation", "grd"); add("MD_Georectified", "rtf");
