Package com.verisign.epp.codec.defReg
Class EPPDefRegInfoCmd
java.lang.Object
com.verisign.epp.codec.gen.EPPCommand
com.verisign.epp.codec.gen.EPPInfoCmd
com.verisign.epp.codec.defReg.EPPDefRegInfoCmd
- All Implemented Interfaces:
EPPCodecComponent,EPPMessage,Serializable,Cloneable
Represents an EPPDefReg
In addition to the standard EPP command elements, the
<info> command that is used to retrieve information associated with
a defReg. The response to this command MAY vary depending on the identity of the querying client,
use of authorization information, and server policy towards unauthorized clients. If the querying
client is the sponsoring client, all available information MUST be returned. If the querying
client is not the sponsoring client, but the client provides valid authorization information, all
available information MUST be returned. If the querying client is not the sponsoring client, and
the client does not provide valid authorization information, server policy determines which
OPTIONAL elements are returned.In addition to the standard EPP command elements, the
<info> command MUST contain a
<defReg:info> element that identifies the defReg namespace.The <defReg:info> element
contains the following child elements:
-
A
<defReg:roid>element that contains the roid of the object to be queried -
A
<defReg:authInfo>OPTIONAL element that contains authorization information associated with the defReg object or authorization information associated with the defReg object's registrant or associated contacts. An OPTIONAL "roid" attribute MUST be used to identify the registrant or contact object if and only if the given authInfo is associated with a registrant or contact object, and not the defReg itself. If this element is not provided or if the authorization information is invalid, server policy determines if the command is rejected or if response information will be returned to the client.
EPPDefRegInfoResp is the concrete EPPReponse associated with
EPPDefRegInfoCmd.- See Also:
-
Field Summary
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
ConstructorsConstructorDescriptionEPPDefRegInfoCmddefault constructor.EPPDefRegInfoCmd(String aTransId, String aRoid) EPPDefRegInfoCmdconstructor that takes the defReg roid as an argument.EPPDefRegInfoCmd(String aTransId, String aRoid, EPPAuthInfo aAuthInfo) -
Method Summary
Modifier and TypeMethodDescriptionclone()CloneEPPDefRegInfoCmd.protected voidDecode theEPPDefRegInfoCmdattributes from the aElement DOM Element tree.protected ElementEncode a DOM Element tree from the attributes of theEPPDefRegInfoCmdinstance.booleanCompare an instance ofEPPDefRegInfoCmdwith this instance.Get authorization informationgetKey()Gets the key for the defensive registration object, which is the defensive registration ROID.Gets the EPP command Namespace associated withEPPDefRegInfoCmd.getRoid()Gets the defReg roid to get information on.voidsetAuthInfo(EPPAuthInfo aAuthInfo) Set authorization informationvoidSets the defReg roid to get information on.toString()Implementation ofObject.toString, which will result in an indented XMLStringrepresentation of the concreteEPPCodecComponent.Methods inherited from class com.verisign.epp.codec.gen.EPPInfoCmd
doGenDecode, doGenEncode, getTypeMethods inherited from class com.verisign.epp.codec.gen.EPPCommand
addExtension, decode, encode, findDuplicateExtNamespaces, findExtNamespaces, findExtNamespaceSuffixes, findUnsupportedExtNamespaces, findUnsupportedExtNamespaceSuffixes, getExtension, getExtension, getExtensions, getOp, getTransId, hasExtension, hasExtensions, hasKey, hasTransId, setExtension, setExtensions, setTransId
-
Constructor Details
-
EPPDefRegInfoCmd
public EPPDefRegInfoCmd()EPPDefRegInfoCmddefault constructor. The roid is initialized tonull. The roid must be set before invokingencode. -
EPPDefRegInfoCmd
EPPDefRegInfoCmdconstructor that takes the defReg roid as an argument.- Parameters:
aTransId- Transaction Id associated with command.aRoid- DefReg roid to get information on.
-
EPPDefRegInfoCmd
-
-
Method Details
-
getNamespace
Gets the EPP command Namespace associated withEPPDefRegInfoCmd.- Specified by:
getNamespacein interfaceEPPCodecComponent- Specified by:
getNamespacein interfaceEPPMessage- Specified by:
getNamespacein classEPPCommand- Returns:
EPPDefRegMapFactory.NS
-
getKey
Gets the key for the defensive registration object, which is the defensive registration ROID.- Overrides:
getKeyin classEPPCommand- Returns:
- The defensive registration ROID if set;
nullotherwise.
-
getRoid
Gets the defReg roid to get information on.- Returns:
- DefReg roid
Stringinstance if defined;nullotherwise.
-
setRoid
Sets the defReg roid to get information on.- Parameters:
aRoid- DefReg Name
-
doEncode
Encode a DOM Element tree from the attributes of theEPPDefRegInfoCmdinstance.- Specified by:
doEncodein classEPPInfoCmd- Parameters:
aDocument- DOM Document that is being built. Used as an Element factory.- Returns:
- Root DOM Element representing the
EPPDefRegInfoCmdinstance. - Throws:
EPPEncodeException- Unable to encodeEPPDefRegInfoCmdinstance.
-
doDecode
Decode theEPPDefRegInfoCmdattributes from the aElement DOM Element tree.- Specified by:
doDecodein classEPPInfoCmd- Parameters:
aElement- Root DOM Element to decodeEPPDefRegInfoCmdfrom.- Throws:
EPPDecodeException- Unable to decode aElement
-
getAuthInfo
Get authorization information- Returns:
- Authorization information if defined;
nullotherwise;
-
setAuthInfo
Set authorization information- Parameters:
aAuthInfo- EPPAuthInfo
-
equals
Compare an instance ofEPPDefRegInfoCmdwith this instance.- Overrides:
equalsin classEPPInfoCmd- Parameters:
aObject- Object to compare with.- Returns:
- DOCUMENT ME!
-
clone
CloneEPPDefRegInfoCmd.- Specified by:
clonein interfaceEPPCodecComponent- Overrides:
clonein classEPPCommand- Returns:
- clone of
EPPDefRegInfoCmd - Throws:
CloneNotSupportedException- standard Object.clone exception
-
toString
Implementation ofObject.toString, which will result in an indented XMLStringrepresentation of the concreteEPPCodecComponent.- Overrides:
toStringin classEPPCommand- Returns:
- Indented XML
Stringif successful;ERRORotherwise.
-