public class EPPRegistryCheckCmd extends EPPCheckCmd
getNames and
setNames to get and set the elements. Use addName to add a
name to existing list or use setName to set an individual name.EPPRegistryCheckResp is the concrete EPPReponse associated
with EPPRegistryCheckCmd. EPPRegistryCheckResp,
Serialized Form| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
ELM_LOCALNAME
XML local name for
EPPRegistryCheckCmd. |
static java.lang.String |
ELM_NAME
XML root tag for
EPPRegistryCheckCmd. |
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 |
|---|
EPPRegistryCheckCmd()
EPPRegistryCheckCmd default constructor. |
EPPRegistryCheckCmd(java.lang.String aTransId,
EPPRegistryZoneName aName)
EPPRegistryCheckCmd constructor that will check an individual zone
name. |
EPPRegistryCheckCmd(java.lang.String aTransId,
java.util.List<EPPRegistryZoneName> aNames)
EPPRegistryCheckCmd constructor that will check a list of zone
names. |
EPPRegistryCheckCmd(java.lang.String aTransId,
java.lang.String aName)
EPPRegistryCheckCmd constructor that will check an individual zone
name. |
| Modifier and Type | Method and Description |
|---|---|
void |
addName(EPPRegistryZoneName aName)
Append an zone name to the name
List to check. |
void |
addName(java.lang.String aName)
Append an aLabel zone name to the name
List to check. |
java.lang.Object |
clone()
Clone
EPPRegistryCheckCmd. |
protected void |
doDecode(org.w3c.dom.Element aElement)
Decode the
EPPRegistryCheckCmd 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 the
EPPRegistryCheckCmd instance. |
boolean |
equals(java.lang.Object aObject)
Compare an instance of
EPPRegistryCheckCmd with this instance. |
java.util.List<EPPRegistryZoneName> |
getNames()
Get zone names to check.
|
java.lang.String |
getNamespace()
Gets the EPP command Namespace associated with
EPPRegistryCheckCmd
. |
void |
setName(EPPRegistryZoneName aName)
Set an individual zone name to check.
|
void |
setName(java.lang.String aName)
Set an individual aLabel zone name to check.
|
void |
setNames(java.util.List<EPPRegistryZoneName> aNames)
Set zone names to check.
|
java.lang.String |
toString()
Implementation of
Object.toString, which will result in an
indented XML String representation of the concrete
EPPCodecComponent. |
doGenDecode, doGenEncode, getTypeaddExtension, decode, encode, findDuplicateExtNamespaces, getExtension, getExtension, getExtensions, getOp, getTransId, hasExtension, hasExtensions, hasTransId, setExtension, setExtensions, setTransIdpublic static final java.lang.String ELM_LOCALNAME
EPPRegistryCheckCmd.public static final java.lang.String ELM_NAME
EPPRegistryCheckCmd.public EPPRegistryCheckCmd()
EPPRegistryCheckCmd default constructor. It will set the names
attribute to an empty List.public EPPRegistryCheckCmd(java.lang.String aTransId,
java.lang.String aName)
EPPRegistryCheckCmd constructor that will check an individual zone
name.aTransId - Transaction Id associated with command.aName - aLabel zone name to checkpublic EPPRegistryCheckCmd(java.lang.String aTransId,
EPPRegistryZoneName aName)
EPPRegistryCheckCmd constructor that will check an individual zone
name.aTransId - Transaction Id associated with command.aName - zone name to checkpublic EPPRegistryCheckCmd(java.lang.String aTransId,
java.util.List<EPPRegistryZoneName> aNames)
EPPRegistryCheckCmd constructor that will check a list of zone
names.aTransId - Transaction Id associated with command.aNames - List of zone name String instances.public java.lang.String getNamespace()
EPPRegistryCheckCmd
.getNamespace in interface EPPCodecComponentgetNamespace in interface EPPMessagegetNamespace in class EPPCommandEPPRegistryMapFactory.NSpublic boolean equals(java.lang.Object aObject)
EPPRegistryCheckCmd with this instance.equals in class EPPCheckCmdaObject - Object to compare with.true if this object is the same as the aObject argument;
false otherwise.public java.lang.Object clone()
throws java.lang.CloneNotSupportedException
EPPRegistryCheckCmd.clone in interface EPPCodecComponentclone in class EPPCommandEPPRegistryCheckCmdjava.lang.CloneNotSupportedException - standard Object.clone exceptionpublic java.lang.String toString()
Object.toString, which will result in an
indented XML String representation of the concrete
EPPCodecComponent.toString in class EPPCommandString if successful; ERROR
otherwise.protected org.w3c.dom.Element doEncode(org.w3c.dom.Document aDocument)
throws EPPEncodeException
EPPRegistryCheckCmd instance.doEncode in class EPPCheckCmdaDocument - DOM Document that is being built. Used as an Element factory.EPPRegistryCheckCmd instance.EPPEncodeException - Unable to encode EPPRegistryCheckCmd instance.protected void doDecode(org.w3c.dom.Element aElement)
throws EPPDecodeException
EPPRegistryCheckCmd attributes from the aElement DOM
Element tree.doDecode in class EPPCheckCmdaElement - Root DOM Element to decode EPPRegistryCheckCmd from.EPPDecodeException - Unable to decode aElementpublic java.util.List<EPPRegistryZoneName> getNames()
List of zone name EPPRegistryZoneName'spublic void setNames(java.util.List<EPPRegistryZoneName> aNames)
aNames - List of zone name EPPRegistryZoneName'spublic void setName(java.lang.String aName)
List.aName - aLabel zone name to checkpublic void setName(EPPRegistryZoneName aName)
List.aName - zone name to checkpublic void addName(java.lang.String aName)
List to check. This method
does NOT clear existing zone name List.aName - aLabel zone name to appendpublic void addName(EPPRegistryZoneName aName)
List to check. This method does
NOT clear existing zone name List.aName - Zone name to append