public abstract class EPPCheckCmd extends EPPCommand
check command. EPPCheckCmd is an abtract EPP command class that represents a
check operation. A command mapping check command extends
EPPCheckCmd. For example, EPPDomainCheckCmd
is a EPPCheckCmd that implements the Domain Check Command
Mapping.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 and Description |
|---|
EPPCheckCmd()
Default constructor for
EPPCheckCmd. |
EPPCheckCmd(java.lang.String aTransId)
EPPCheckCmd that takes all required attributes as
arguments. |
| Modifier and Type | Method and Description |
|---|---|
protected abstract void |
doDecode(org.w3c.dom.Element aElement)
Must be defined by
EPPCheckCmd extensions (Command
Mappings) to decode the attributes to a DOM Element tree. |
protected abstract org.w3c.dom.Element |
doEncode(org.w3c.dom.Document aDocument)
Must be defined by
EPPCheckCmd extensions (Command
Mappings) to encode the attributes to a DOM Element tree. |
protected void |
doGenDecode(org.w3c.dom.Element aElement)
Decodes the
EPPCheckCmd attributes from the
aElement DOM Element tree. |
protected org.w3c.dom.Element |
doGenEncode(org.w3c.dom.Document aDocument)
Encodes a DOM Element tree from the attributes of the
EPPCheckCmd instance. |
boolean |
equals(java.lang.Object aObject)
Compares an instance of
EPPCheckCmd with this instance. |
java.lang.String |
getType()
Gets the EPP command type associated with
EPPCheckCmd. |
addExtension, clone, decode, encode, findDuplicateExtNamespaces, getExtension, getExtension, getExtensions, getNamespace, getOp, getTransId, hasExtension, hasExtensions, hasTransId, setExtension, setExtensions, setTransId, toStringpublic EPPCheckCmd()
EPPCheckCmd.public EPPCheckCmd(java.lang.String aTransId)
EPPCheckCmd that takes all required attributes as
arguments. This will call the super
EPPCommand(String) method to set the transaction id for
the command.aTransId - Transaction Id associated with command.public java.lang.String getType()
EPPCheckCmd.getType in class EPPCommandpublic boolean equals(java.lang.Object aObject)
EPPCheckCmd with this instance.equals in class EPPCommandaObject - Object to compare with.protected org.w3c.dom.Element doGenEncode(org.w3c.dom.Document aDocument)
throws EPPEncodeException
EPPCheckCmd instance. This method is a member of the
Template Design Pattern. EPPCommand.encode is a
Template Method and this method is a Primitive
Operation within the Template Method Design Pattern.doGenEncode in class EPPCommandaDocument - - DOM Document that is being built. Used as an Element
factory.EPPCheckCmd
instance.EPPEncodeException - Unable to encode EPPCheckCmd
instance.protected void doGenDecode(org.w3c.dom.Element aElement)
throws EPPDecodeException
EPPCheckCmd attributes from the
aElement DOM Element tree. This method is a member of
the Template Design Pattern. EPPCommand.decode is a
Template Method and this method is a Primitive
Operation within the Template Method Design Pattern.doGenDecode in class EPPCommandaElement - - Root DOM Element to decode EPPCheckCmd
from.EPPDecodeException - Unable to decode aElementprotected abstract org.w3c.dom.Element doEncode(org.w3c.dom.Document aDocument)
throws EPPEncodeException
EPPCheckCmd extensions (Command
Mappings) to encode the attributes to a DOM Element tree.
doGenEncode is a Template Method and this
method is a Primitive Operation within the Template Method
Design Pattern.aDocument - - DOM Document that is being built. Used as an Element
factory.EPPEncodeException - Unable to encode EPPCheckCmd extension
instance.protected abstract void doDecode(org.w3c.dom.Element aElement)
throws EPPDecodeException
EPPCheckCmd extensions (Command
Mappings) to decode the attributes to a DOM Element tree.
doGenDecode is a Template Method and this
method is a Primitive Operation within the Template Method
Design Pattern.aElement - Root DOM Element representing the
EPPCheckCmd extension instance.EPPDecodeException - Unable to decode aElement.