Package com.verisign.epp.codec.defReg
Class EPPDefRegTransferResp
- java.lang.Object
-
- com.verisign.epp.codec.gen.EPPResponse
-
- com.verisign.epp.codec.defReg.EPPDefRegTransferResp
-
- All Implemented Interfaces:
EPPCodecComponent,EPPMessage,java.io.Serializable,java.lang.Cloneable
public class EPPDefRegTransferResp extends EPPResponse
Represents an EPP DefReg<defReg:transfer>response to anEPPDefRegTransferCmd. When a<transfer>query command has been processed successfully, the EPP<resData>element MUST contain a child<defReg:trnData>element that identifies the defReg namespace. The<defReg:trnData>element contains the following child elements:-
A
<defReg:roid>element that contains the repository object identifier assigned to the defReg object when the object was created. -
A
<defReg:trStatus>element that contains the state of the most recent transfer request. -
A
<defReg:reID>element that contains the identifier of the client that requested the object transfer. -
A
<defReg:reDate>element that contains the date and time that the transfer was requested. -
A
<defReg:acID>element that contains the identifier of the client that SHOULD act upon the PENDING transfer request. For all other status types, the value identifies the client that took the indicated action. -
A
<defReg:acDate>element that contains the date and time of a required or completed response. For a PENDING request, the value identifies the date and time by which a response is required before an automated response action MUST be taken by the server. For all other status types, the value identifies the date and time when the request was completed. -
An OPTIONAL
<defReg:exDate>element that contains the end of the defReg object's validity period if the <transfer> command caused or causes a change in the validity period.
- See Also:
EPPDefRegTransferCmd, Serialized Form
-
-
Field Summary
-
Fields inherited from class com.verisign.epp.codec.gen.EPPResponse
ELM_EXTENSION, ELM_MESSAGE_QUEUE, ELM_MESSAGE_QUEUE_QDATE, ELM_RESPONSE_DATA, extensions, TRANSFER_CLIENT_APPROVED, TRANSFER_CLIENT_CANCELLED, TRANSFER_CLIENT_REJECTED, TRANSFER_PENDING, TRANSFER_SERVER_APPROVED, TRANSFER_SERVER_CANCELLED
-
-
Constructor Summary
Constructors Constructor Description EPPDefRegTransferResp()EPPDefRegTransferRespdefault constructor.EPPDefRegTransferResp(EPPTransId aTransId, java.lang.String aRoid)EPPDefRegTransferRespwhich takes the roid of defReg.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectclone()CloneEPPDefRegTransferResp.protected voiddoDecode(org.w3c.dom.Element aElement)Decode theEPPDefRegTransferRespattributes from the aElement DOM Element tree.protected org.w3c.dom.ElementdoEncode(org.w3c.dom.Document aDocument)Encode a DOM Element tree from the attributes of theEPPDefRegTransferRespinstance.booleanequals(java.lang.Object aObject)Compare an instance ofEPPDefRegTransferRespwith this instance.java.lang.StringgetActionClient()Gets the identifier of the client that SHOULD respond to the transfer request.java.util.DategetActionDate()Gets the date and time of a required or completed response.java.util.DategetExpirationDate()Gets the optional attribute that contains the end of the defReg's validity period if the transfer command caused or causes a change in the validity period.java.lang.StringgetNamespace()Gets the EPP command Namespace associated withEPPDefRegTransferResp.java.lang.StringgetRequestClient()Gets the identifier of the client that initiated the transfer request.java.util.DategetRequestDate()Gets the date and time that the transfer was requested.java.lang.StringgetRoid()Gets the defReg roidjava.lang.StringgetTransferStatus()Gets the state of the most recent transfer request.java.lang.StringgetType()Gets the EPP response type associated withEPPDefRegTransferResp.voidsetActionClient(java.lang.String aActionClient)Sets the identifier of the client that SHOULD respond to the transfer request.voidsetActionDate(java.util.Date aActionDate)Sets the date and time of a required or completed response.voidsetExpirationDate(java.util.Date aExpirationDate)Sets the optional attribute that contains the end of the defReg's validity period if the transfer command caused or causes a change in the validity period.voidsetRequestClient(java.lang.String aRequestClient)Sets the identifier of the client that initiated the transfer request.voidsetRequestDate(java.util.Date aRequestDate)Sets the date and time that the transfer was requested.voidsetRoid(java.lang.String aRoid)Sets the defReg roid.voidsetTransferStatus(java.lang.String aTransferStatus)Sets the state of the most recent transfer request.java.lang.StringtoString()Implementation ofObject.toString, which will result in an indented XMLStringrepresentation of the concreteEPPCodecComponent.-
Methods inherited from class com.verisign.epp.codec.gen.EPPResponse
addExtension, decode, encode, findDuplicateExtNamespaces, findExtNamespaces, findExtNamespaceSuffixes, findUnsupportedExtNamespaces, findUnsupportedExtNamespaceSuffixes, getExtension, getExtension, getExtensions, getMessageQueue, getMsgQueue, getMsgQueueCount, getMsgQueueDate, getMsgQueueMsg, getQDate, getResult, getResults, getTransId, hasExtension, hasExtensions, hasMessageQueue, hasMsgQueue, hasResultCode, isSuccess, setExtension, setExtensions, setMsgQueue, setResult, setResult, setResult, setResult, setResults, setTransId
-
-
-
-
Constructor Detail
-
EPPDefRegTransferResp
public EPPDefRegTransferResp()
EPPDefRegTransferRespdefault constructor. Must call required setter methods before invokingencode, which include:
-
roid -
setRoid -
request client -
setRequestClient -
action client -
setActionClient -
transfer status -
setTransferStatus -
request date -
setReqeustDate -
action date -
setActionDate -
transaction id -
setTransId
-
roid -
-
EPPDefRegTransferResp
public EPPDefRegTransferResp(EPPTransId aTransId, java.lang.String aRoid)
EPPDefRegTransferRespwhich takes the roid of defReg. All other required attributes need to be set using the setter methods, which include:
-
request client -
setRequestClient -
action client -
setActionClient -
transfer status -
setTransferStatus -
request date -
setReqeustDate -
action date -
setActionDate
- Parameters:
aTransId- Transaction Id associated with response.aRoid- String roid
-
request client -
-
-
Method Detail
-
getType
public java.lang.String getType()
Gets the EPP response type associated withEPPDefRegTransferResp.- Overrides:
getTypein classEPPResponse- Returns:
EPPDefRegTransferResp.ELM_NAME
-
getNamespace
public java.lang.String getNamespace()
Gets the EPP command Namespace associated withEPPDefRegTransferResp.- Specified by:
getNamespacein interfaceEPPCodecComponent- Specified by:
getNamespacein interfaceEPPMessage- Overrides:
getNamespacein classEPPResponse- Returns:
EPPDefRegMapFactory.NS
-
doEncode
protected org.w3c.dom.Element doEncode(org.w3c.dom.Document aDocument) throws EPPEncodeExceptionEncode a DOM Element tree from the attributes of theEPPDefRegTransferRespinstance.- Overrides:
doEncodein classEPPResponse- Parameters:
aDocument- DOM Document that is being built. Used as an Element factory.- Returns:
- Root DOM Element representing the
EPPDefRegTransferRespinstance. - Throws:
EPPEncodeException- Unable to encodeEPPDefRegTransferRespinstance.
-
doDecode
protected void doDecode(org.w3c.dom.Element aElement) throws EPPDecodeExceptionDecode theEPPDefRegTransferRespattributes from the aElement DOM Element tree.- Overrides:
doDecodein classEPPResponse- Parameters:
aElement- Root DOM Element to decodeEPPDefRegTransferRespfrom.- Throws:
EPPDecodeException- Unable to decode aElement
-
equals
public boolean equals(java.lang.Object aObject)
Compare an instance ofEPPDefRegTransferRespwith this instance.- Overrides:
equalsin classEPPResponse- Parameters:
aObject- Object to compare with.- Returns:
- DOCUMENT ME!
-
clone
public java.lang.Object clone() throws java.lang.CloneNotSupportedExceptionCloneEPPDefRegTransferResp.- Specified by:
clonein interfaceEPPCodecComponent- Overrides:
clonein classEPPResponse- Returns:
- clone of
EPPDefRegTransferResp - Throws:
java.lang.CloneNotSupportedException- standard Object.clone exception
-
toString
public java.lang.String toString()
Implementation ofObject.toString, which will result in an indented XMLStringrepresentation of the concreteEPPCodecComponent.- Overrides:
toStringin classEPPResponse- Returns:
- Indented XML
Stringif successful;ERRORotherwise.
-
getRoid
public java.lang.String getRoid()
Gets the defReg roid- Returns:
- DefReg roid if set;
nullotherwise.
-
setRoid
public void setRoid(java.lang.String aRoid)
Sets the defReg roid.- Parameters:
aRoid- DefReg Roid
-
getRequestClient
public java.lang.String getRequestClient()
Gets the identifier of the client that initiated the transfer request.- Returns:
- The Request Client Id
Stringif defined;nullotherwise.
-
setRequestClient
public void setRequestClient(java.lang.String aRequestClient)
Sets the identifier of the client that initiated the transfer request.- Parameters:
aRequestClient- The Request Client IdString
-
getActionClient
public java.lang.String getActionClient()
Gets the identifier of the client that SHOULD respond to the transfer request.- Returns:
- The Request Client Id
Stringif defined;nullotherwise.
-
setActionClient
public void setActionClient(java.lang.String aActionClient)
Sets the identifier of the client that SHOULD respond to the transfer request.- Parameters:
aActionClient- The Action Client IdString
-
getTransferStatus
public java.lang.String getTransferStatus()
Gets the state of the most recent transfer request. This should be one of theEPPResponse.TRANSFERconstants.- Returns:
- The transfer status
Stringif defined;nullotherwise.
-
setTransferStatus
public void setTransferStatus(java.lang.String aTransferStatus)
Sets the state of the most recent transfer request. This should be one of theEPPResponse.TRANSFERconstants.- Parameters:
aTransferStatus- The transfer status String (EPPResponse.TRANSFER)
-
getRequestDate
public java.util.Date getRequestDate()
Gets the date and time that the transfer was requested.- Returns:
- The request date and time if defined;
nullotherwise.
-
setRequestDate
public void setRequestDate(java.util.Date aRequestDate)
Sets the date and time that the transfer was requested.- Parameters:
aRequestDate- The request date and time
-
getActionDate
public java.util.Date getActionDate()
Gets the date and time of a required or completed response.- Returns:
- The required or complete response data and time if defined;
nullotherwise.
-
setActionDate
public void setActionDate(java.util.Date aActionDate)
Sets the date and time of a required or completed response.- Parameters:
aActionDate- The required or complete response data and time.
-
getExpirationDate
public java.util.Date getExpirationDate()
Gets the optional attribute that contains the end of the defReg's validity period if the transfer command caused or causes a change in the validity period.- Returns:
- Transfer expiration data and time if defined;
nullotherwise.
-
setExpirationDate
public void setExpirationDate(java.util.Date aExpirationDate)
Sets the optional attribute that contains the end of the defReg's validity period if the transfer command caused or causes a change in the validity period.- Parameters:
aExpirationDate- Transfer expiration data and time.
-
-