Class EPPRegistryUpdateCmd
- java.lang.Object
-
- com.verisign.epp.codec.gen.EPPCommand
-
- com.verisign.epp.codec.gen.EPPUpdateCmd
-
- com.verisign.epp.codec.registry.v02.EPPRegistryUpdateCmd
-
- All Implemented Interfaces:
EPPCodecComponent
,EPPMessage
,java.io.Serializable
,java.lang.Cloneable
public class EPPRegistryUpdateCmd extends EPPUpdateCmd
Represents an EPP Registry <update> command. The EPP <update> command provides a transform operation that allows a client to modify the attributes of a zone object. In addition to the standard EPP command elements, the <update> command MUST contain a <domain:update> element that identifies the domain namespace and the location of the domain schema. In addition to The <registry:update> element SHALL contain the following child elements:
- A <registry:zone> element that contains the detailed registry
information of the object to be updated. Use
getZone
andsetZone
to get and set the element.
EPPRegistryUpdateResp
is the concreteEPPReponse
associated withEPPRegistryUpdateCmd
.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ELM_LOCALNAME
XML local name forEPPRegistryUpdateCmd
.static java.lang.String
ELM_NAME
XML root tag forEPPRegistryUpdateCmd
.-
Fields inherited from class com.verisign.epp.codec.gen.EPPCommand
extensions, OP_APPROVE, OP_CANCEL, OP_QUERY, OP_REJECT, OP_REQUEST, transId, TYPE_CHECK, TYPE_CREATE, TYPE_DELETE, TYPE_INFO, TYPE_LOGIN, TYPE_LOGOUT, TYPE_POLL, TYPE_RENEW, TYPE_TRANSFER, TYPE_UPDATE
-
-
Constructor Summary
Constructors Constructor Description EPPRegistryUpdateCmd()
Creates an empty EPPRegistryUpdateCmd object.EPPRegistryUpdateCmd(java.lang.String aTransId, EPPRegistryZone aZone)
Creates a new EPPRegistryUpdateCmd object that will update a registry object based on the info inzone
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
clone()
CloneEPPRegistryUpdateCmd
.protected void
doDecode(org.w3c.dom.Element aElement)
Decode theEPPRegistryUpdateCmd
attributes from the aElement DOM Element tree.protected org.w3c.dom.Element
doEncode(org.w3c.dom.Document aDocument)
Encode a DOM Element tree from the attributes of theEPPRegistryUpdateCmd
instance.boolean
equals(java.lang.Object aObject)
Compare an instance ofEPPRegistryUpdateCmd
with this instance.java.lang.String
getNamespace()
Get the EPP command Namespace associated with EPPRegistryUpdateCmd.EPPRegistryZone
getZone()
Gets the zone to update.void
setZone(EPPRegistryZone aZone)
Sets the zone to update.java.lang.String
toString()
Implementation ofObject.toString
, which will result in an indented XMLString
representation of the concreteEPPCodecComponent
.-
Methods inherited from class com.verisign.epp.codec.gen.EPPUpdateCmd
doGenDecode, doGenEncode, getType
-
Methods inherited from class com.verisign.epp.codec.gen.EPPCommand
addExtension, decode, encode, findDuplicateExtNamespaces, findExtNamespaces, findExtNamespaceSuffixes, findUnsupportedExtNamespaces, findUnsupportedExtNamespaceSuffixes, getExtension, getExtension, getExtensions, getOp, getTransId, hasExtension, hasExtensions, hasTransId, setExtension, setExtensions, setTransId
-
-
-
-
Field Detail
-
ELM_LOCALNAME
public static final java.lang.String ELM_LOCALNAME
XML local name forEPPRegistryUpdateCmd
.- See Also:
- Constant Field Values
-
ELM_NAME
public static final java.lang.String ELM_NAME
XML root tag forEPPRegistryUpdateCmd
.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
EPPRegistryUpdateCmd
public EPPRegistryUpdateCmd()
Creates an empty EPPRegistryUpdateCmd object.zone
is set tonull
. UsesetZone
to setzone
attribute before sending the update command.
-
EPPRegistryUpdateCmd
public EPPRegistryUpdateCmd(java.lang.String aTransId, EPPRegistryZone aZone)
Creates a new EPPRegistryUpdateCmd object that will update a registry object based on the info inzone
.- Parameters:
aTransId
- Transaction Id associated with command.aZone
- Instance ofEPPRegistryZone
to update
-
-
Method Detail
-
getNamespace
public java.lang.String getNamespace()
Get the EPP command Namespace associated with EPPRegistryUpdateCmd.- Specified by:
getNamespace
in interfaceEPPCodecComponent
- Specified by:
getNamespace
in interfaceEPPMessage
- Specified by:
getNamespace
in classEPPCommand
- Returns:
EPPRegistryMapFactory.NS
-
equals
public boolean equals(java.lang.Object aObject)
Compare an instance ofEPPRegistryUpdateCmd
with this instance.- Overrides:
equals
in classEPPUpdateCmd
- Parameters:
aObject
- Object to compare with.- Returns:
true
if this object is the same as the aObject argument;false
otherwise
-
clone
public java.lang.Object clone() throws java.lang.CloneNotSupportedException
CloneEPPRegistryUpdateCmd
.- Specified by:
clone
in interfaceEPPCodecComponent
- Overrides:
clone
in classEPPCommand
- Returns:
- clone of
EPPRegistryUpdateCmd
- Throws:
java.lang.CloneNotSupportedException
- standard Object.clone exception
-
toString
public java.lang.String toString()
Implementation ofObject.toString
, which will result in an indented XMLString
representation of the concreteEPPCodecComponent
.- Overrides:
toString
in classEPPCommand
- Returns:
- Indented XML
String
if successful;ERROR
otherwise.
-
doEncode
protected org.w3c.dom.Element doEncode(org.w3c.dom.Document aDocument) throws EPPEncodeException
Encode a DOM Element tree from the attributes of theEPPRegistryUpdateCmd
instance.- Specified by:
doEncode
in classEPPUpdateCmd
- Parameters:
aDocument
- DOM Document that is being built. Used as an Element factory.- Returns:
- Root DOM Element representing the
EPPRegistryUpdateCmd
instance. - Throws:
EPPEncodeException
- Unable to encodeEPPRegistryUpdateCmd
instance.
-
doDecode
protected void doDecode(org.w3c.dom.Element aElement) throws EPPDecodeException
Decode theEPPRegistryUpdateCmd
attributes from the aElement DOM Element tree.- Specified by:
doDecode
in classEPPUpdateCmd
- Parameters:
aElement
- Root DOM Element to decodeEPPRegistryUpdateCmd
from.- Throws:
EPPDecodeException
- Unable to decode aElement
-
getZone
public EPPRegistryZone getZone()
Gets the zone to update.- Returns:
- Instance of
EPPRegistryZone
to update
-
setZone
public void setZone(EPPRegistryZone aZone)
Sets the zone to update.- Parameters:
aZone
- Instance ofEPPRegistryZone
to update
-
-