Add domain check and update registration type extensions

This completes the command extensions for the regType 0.2 extension.
Up next will be the response extensions.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=123322887
This commit is contained in:
mcilwain 2016-05-26 08:48:02 -07:00 committed by Ben McIlwain
parent 510da196d7
commit 041b2c4116
11 changed files with 158 additions and 6 deletions

View file

@ -37,7 +37,9 @@ 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.RegTypeCheckExtension;
import google.registry.model.domain.regtype.RegTypeCreateExtension;
import google.registry.model.domain.regtype.RegTypeUpdateExtension;
import google.registry.model.domain.rgp.RgpUpdateExtension;
import google.registry.model.domain.secdns.SecDnsCreateExtension;
import google.registry.model.domain.secdns.SecDnsUpdateExtension;
@ -277,7 +279,9 @@ public class EppInput extends ImmutableObject {
@XmlElementRef(type = LaunchInfoExtension.class),
@XmlElementRef(type = LaunchUpdateExtension.class),
@XmlElementRef(type = MetadataExtension.class),
@XmlElementRef(type = RegTypeCheckExtension.class),
@XmlElementRef(type = RegTypeCreateExtension.class),
@XmlElementRef(type = RegTypeUpdateExtension.class),
@XmlElementRef(type = RgpUpdateExtension.class),
@XmlElementRef(type = SecDnsCreateExtension.class),
@XmlElementRef(type = SecDnsUpdateExtension.class) })