mirror of
https://github.com/google/nomulus.git
synced 2025-05-13 07:57:13 +02:00
Add simple registration type command extension for domain creates
Note that it doesn't do anything yet beyond basic XML validation because the default registry system doesn't use registration types, but this serves as a template for the other domain commands using registration types and provides a method that TLDs implementing custom logic can use. This also explicitly doesn't yet handle the response extensions. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=123245388
This commit is contained in:
parent
ee148ce630
commit
a09f478ac0
11 changed files with 142 additions and 3 deletions
|
@ -37,6 +37,7 @@ import google.registry.model.domain.launch.LaunchDeleteExtension;
|
|||
import google.registry.model.domain.launch.LaunchInfoExtension;
|
||||
import google.registry.model.domain.launch.LaunchUpdateExtension;
|
||||
import google.registry.model.domain.metadata.MetadataExtension;
|
||||
import google.registry.model.domain.regtype.RegTypeCreateExtension;
|
||||
import google.registry.model.domain.rgp.RgpUpdateExtension;
|
||||
import google.registry.model.domain.secdns.SecDnsCreateExtension;
|
||||
import google.registry.model.domain.secdns.SecDnsUpdateExtension;
|
||||
|
@ -276,6 +277,7 @@ public class EppInput extends ImmutableObject {
|
|||
@XmlElementRef(type = LaunchInfoExtension.class),
|
||||
@XmlElementRef(type = LaunchUpdateExtension.class),
|
||||
@XmlElementRef(type = MetadataExtension.class),
|
||||
@XmlElementRef(type = RegTypeCreateExtension.class),
|
||||
@XmlElementRef(type = RgpUpdateExtension.class),
|
||||
@XmlElementRef(type = SecDnsCreateExtension.class),
|
||||
@XmlElementRef(type = SecDnsUpdateExtension.class) })
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue