From 3983f327959c73677d6ec007fa0ac98b4f96f41c Mon Sep 17 00:00:00 2001 From: larryruili Date: Mon, 21 May 2018 09:25:33 -0700 Subject: [PATCH] Add more valid response codes to Lordn 3618 and 3619 were probably added after the fact, see https://tools.ietf.org/id/draft-lozano-tmch-func-spec-09.txt for the authoritative source. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=197405129 --- java/google/registry/tmch/LordnLog.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/java/google/registry/tmch/LordnLog.java b/java/google/registry/tmch/LordnLog.java index 66d29e925..5061e5550 100644 --- a/java/google/registry/tmch/LordnLog.java +++ b/java/google/registry/tmch/LordnLog.java @@ -108,6 +108,8 @@ public final class LordnLog implements Iterable> .put( 3616, new Result(3616, "Registration Date of DN in claims before the end of Sunrise")) .put(3617, new Result(3617, "Registrar has not been approved by the TMDB")) + .put(3618, new Result(3618, "Registration Date of DN outside of QLP period")) + .put(3619, new Result(3619, "TCN was not valid at the time of acknowledgement")) .put(4501, new Result(4501, "Syntax Error in DN Line")) .put(4601, new Result(4601, "Invalid TLD used")) .put(4602, new Result(4602, "Registrar ID Invalid"))