Package google.registry.model.eppinput
Class EppInput.CommandWrapper
- java.lang.Object
-
- google.registry.model.ImmutableObject
-
- google.registry.model.eppinput.EppInput.CommandWrapper
-
- All Implemented Interfaces:
java.lang.Cloneable
- Direct Known Subclasses:
EppInput.Hello
- Enclosing class:
- EppInput
public static class EppInput.CommandWrapper extends ImmutableObject
The "command" element that holds an actual command inside of it.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class google.registry.model.ImmutableObject
ImmutableObject.DoNotCompare, ImmutableObject.DoNotHydrate, ImmutableObject.EmptySetToNull, ImmutableObject.IgnoredInDiffableMap, ImmutableObject.Insignificant
-
-
Field Summary
-
Fields inherited from class google.registry.model.ImmutableObject
hashCode
-
-
Constructor Summary
Constructors Constructor Description CommandWrapper()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Optional<java.lang.String>
getClTrid()
Returns the client transaction ID.EppInput.InnerCommand
getCommand()
com.google.common.collect.ImmutableList<EppInput.CommandExtension>
getExtensions()
-
Methods inherited from class google.registry.model.ImmutableObject
clone, cloneEmptyToNull, createVKey, equals, getSignificantFields, hashCode, toDiffableFieldMap, toHydratedString, toString, toStringHelper
-
-
-
-
Method Detail
-
getClTrid
public java.util.Optional<java.lang.String> getClTrid()
Returns the client transaction ID.This is optional (i.e. it may not be specified) per RFC 5730.
-
getCommand
public EppInput.InnerCommand getCommand()
-
getExtensions
public com.google.common.collect.ImmutableList<EppInput.CommandExtension> getExtensions()
-
-