mirror of
https://github.com/google/nomulus.git
synced 2025-05-13 07:57:13 +02:00
Remove regtype extension since we won't be using it
If we do end up needing it we can simply revert this commit. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=127094676
This commit is contained in:
parent
cd23ece924
commit
0e511f0178
23 changed files with 5 additions and 414 deletions
|
@ -36,7 +36,6 @@ import google.registry.model.domain.fee.FeeCheckExtension;
|
|||
import google.registry.model.domain.fee.FeeCheckResponseExtension;
|
||||
import google.registry.model.domain.fee.FeeCheckResponseExtension.FeeCheck;
|
||||
import google.registry.model.domain.launch.LaunchCheckExtension;
|
||||
import google.registry.model.domain.regtype.RegTypeCheckExtension;
|
||||
import google.registry.model.eppcommon.ProtocolDefinition.ServiceExtension;
|
||||
import google.registry.model.eppoutput.CheckData;
|
||||
import google.registry.model.eppoutput.CheckData.DomainCheck;
|
||||
|
@ -81,15 +80,11 @@ public class DomainCheckFlow extends BaseDomainCheckFlow {
|
|||
private static final Set<TldState> PENDING_ALLOCATION_TLD_STATES =
|
||||
Sets.immutableEnumSet(TldState.GENERAL_AVAILABILITY, TldState.QUIET_PERIOD);
|
||||
|
||||
protected RegTypeCheckExtension regTypeExtension;
|
||||
|
||||
@Inject DomainCheckFlow() {}
|
||||
|
||||
@Override
|
||||
protected void initDomainCheckFlow() throws EppException {
|
||||
registerExtensions(
|
||||
LaunchCheckExtension.class, FeeCheckExtension.class, RegTypeCheckExtension.class);
|
||||
regTypeExtension = eppInput.getSingleExtension(RegTypeCheckExtension.class);
|
||||
registerExtensions(LaunchCheckExtension.class, FeeCheckExtension.class);
|
||||
}
|
||||
|
||||
private String getMessageForCheck(String targetId, Set<String> existingIds) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue