diff --git a/java/google/registry/rdap/RdapIcannStandardInformation.java b/java/google/registry/rdap/RdapIcannStandardInformation.java index bce0563d5..00b2cef6b 100644 --- a/java/google/registry/rdap/RdapIcannStandardInformation.java +++ b/java/google/registry/rdap/RdapIcannStandardInformation.java @@ -72,7 +72,11 @@ public class RdapIcannStandardInformation { static final ImmutableList> nameserverAndEntityBoilerplateRemarks = ImmutableList.of(CONFORMANCE_REMARK); - /** Required by ICANN RDAP Profile section 1.4.8 / 1.4.9, as interpreted. */ + /** + * Required by ICANN RDAP Profile section 1.4.9, as corrected by Gustavo Lozano of ICANN. + * + * @see "http://mm.icann.org/pipermail/gtld-tech/2016-October/000822.html" + */ static final ImmutableMap SUMMARY_DATA_REMARK = ImmutableMap. of( "title", @@ -83,8 +87,11 @@ public class RdapIcannStandardInformation { "type", "object truncated due to unexplainable reasons"); - - /** Required by ICANN RDAP Profile section 1.4.8 / 1.4.9, as interpreted. */ + /** + * Required by ICANN RDAP Profile section 1.4.8, as corrected by Gustavo Lozano of ICANN. + * + * @see "http://mm.icann.org/pipermail/gtld-tech/2016-October/000822.html" + */ static final ImmutableMap TRUNCATED_RESULT_SET_NOTICE = ImmutableMap. of( "title", @@ -93,9 +100,8 @@ public class RdapIcannStandardInformation { ImmutableList.of("Search results per query are limited."), "type", "result set truncated due to unexplainable reasons"); - + /** Truncation notice as a singleton list, for easy use. */ static final ImmutableList> TRUNCATION_NOTICES = ImmutableList.of(TRUNCATED_RESULT_SET_NOTICE); } -