From 9d5650132bd057fed43cc7cf7984e92ea184c84a Mon Sep 17 00:00:00 2001 From: Weimin Yu Date: Mon, 20 Apr 2026 18:03:03 +0000 Subject: [PATCH] Add missing commands to RegistryToolComponent (#3017) They worked in the past unexpectedly but no longer. --- .../registry/tools/RegistryToolComponent.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/core/src/main/java/google/registry/tools/RegistryToolComponent.java b/core/src/main/java/google/registry/tools/RegistryToolComponent.java index c5e2ade95..6ec1187b4 100644 --- a/core/src/main/java/google/registry/tools/RegistryToolComponent.java +++ b/core/src/main/java/google/registry/tools/RegistryToolComponent.java @@ -85,8 +85,12 @@ interface RegistryToolComponent { void inject(CreateDomainCommand command); + void inject(CreatePremiumListCommand command); + void inject(CreateRegistrarCommand command); + void inject(CreateReservedListCommand command); + void inject(CreateUserCommand command); void inject(CurlCommand command); @@ -103,12 +107,18 @@ interface RegistryToolComponent { void inject(GenerateEscrowDepositCommand command); + void inject(GenerateLordnCommand command); + + void inject(GenerateZoneFilesCommand command); + void inject(GetBulkPricingPackageCommand command); void inject(GetDomainCommand command); void inject(GetFeatureFlagCommand command); + void inject(GetHistoryEntriesCommand command); + void inject(GetHostCommand command); void inject(GetKeyringSecretCommand command); @@ -153,8 +163,12 @@ interface RegistryToolComponent { void inject(UpdateKeyringSecretCommand command); + void inject(UpdatePremiumListCommand command); + void inject(UpdateRegistrarCommand command); + void inject(UpdateReservedListCommand command); + void inject(ValidateEscrowDepositCommand command); void inject(ValidateLoginCredentialsCommand command);