mirror of
https://github.com/google/nomulus.git
synced 2025-05-12 22:38:16 +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
|
@ -31,7 +31,6 @@ import google.registry.model.domain.DomainResource.Builder;
|
|||
import google.registry.model.domain.GracePeriod;
|
||||
import google.registry.model.domain.fee.FeeCreateExtension;
|
||||
import google.registry.model.domain.launch.LaunchCreateExtension;
|
||||
import google.registry.model.domain.regtype.RegTypeCreateExtension;
|
||||
import google.registry.model.domain.rgp.GracePeriodStatus;
|
||||
import google.registry.model.registry.Registry;
|
||||
import google.registry.model.registry.Registry.TldState;
|
||||
|
@ -100,8 +99,6 @@ public class DomainCreateFlow extends DomainCreateOrAllocateFlow {
|
|||
private static final Set<TldState> QLP_SMD_ALLOWED_STATES =
|
||||
Sets.immutableEnumSet(TldState.SUNRISE, TldState.SUNRUSH);
|
||||
|
||||
protected RegTypeCreateExtension regTypeExtension;
|
||||
|
||||
@Inject DomainCreateFlow() {}
|
||||
|
||||
private boolean isAnchorTenant() {
|
||||
|
@ -129,9 +126,7 @@ public class DomainCreateFlow extends DomainCreateOrAllocateFlow {
|
|||
|
||||
@Override
|
||||
protected final void initDomainCreateOrAllocateFlow() {
|
||||
registerExtensions(
|
||||
FeeCreateExtension.class, LaunchCreateExtension.class, RegTypeCreateExtension.class);
|
||||
regTypeExtension = eppInput.getSingleExtension(RegTypeCreateExtension.class);
|
||||
registerExtensions(FeeCreateExtension.class, LaunchCreateExtension.class);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue