RDAP: Add comments with specific directions from ICANN

ICANN clarified some errors in the operational profile. Luckily, we had already guessed that that's how things should be.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=136081694
This commit is contained in:
mountford 2016-10-13 13:52:20 -07:00 committed by Ben McIlwain
parent d355aebe01
commit a033c03771

View file

@ -72,7 +72,11 @@ public class RdapIcannStandardInformation {
static final ImmutableList<ImmutableMap<String, Object>> 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<String, Object> SUMMARY_DATA_REMARK =
ImmutableMap.<String, Object> 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<String, Object> TRUNCATED_RESULT_SET_NOTICE =
ImmutableMap.<String, Object> of(
"title",
@ -98,4 +105,3 @@ public class RdapIcannStandardInformation {
static final ImmutableList<ImmutableMap<String, Object>> TRUNCATION_NOTICES =
ImmutableList.of(TRUNCATED_RESULT_SET_NOTICE);
}