Package com.verisign.epp.serverstub
Class PersRegDomainHandler
- java.lang.Object
-
- com.verisign.epp.framework.EPPDomainHandler
-
- com.verisign.epp.serverstub.DomainHandler
-
- com.verisign.epp.serverstub.PersRegDomainHandler
-
- All Implemented Interfaces:
EPPEventHandler
public class PersRegDomainHandler extends DomainHandler
ThePersRegDomainHandler
class extendsDomainHandler
to include responding with Personal Registration Extension attributes. Specifically, the consent identifier and the bundled rate flag are returned.
- See Also:
EPPEvent
,EPPEventResponse
-
-
Constructor Summary
Constructors Constructor Description PersRegDomainHandler()
Constructs an instance of PersRegDomainHandler
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected EPPEventResponse
doDomainCreate(EPPEvent aEvent, java.lang.Object aData)
Add the bunded rate flag attribute to the Domain Create Response.protected EPPEventResponse
doDomainInfo(EPPEvent aEvent, java.lang.Object aData)
Add the consent identifier to the Domain Info Response.protected EPPEventResponse
doDomainRenew(EPPEvent aEvent, java.lang.Object aData)
Add the bunded rate flag attribute to the Domain Renew Response.protected EPPEventResponse
doDomainTransfer(EPPEvent aEvent, java.lang.Object aData)
Add the bunded rate flag attribute to the Domain Transfer Request.-
Methods inherited from class com.verisign.epp.serverstub.DomainHandler
doDomainCheck, doDomainDelete, doDomainUpdate, postHandleEvent, preHandleEvent
-
Methods inherited from class com.verisign.epp.framework.EPPDomainHandler
getNamespace, handleEvent
-
-
-
-
Method Detail
-
doDomainRenew
protected EPPEventResponse doDomainRenew(EPPEvent aEvent, java.lang.Object aData)
Add the bunded rate flag attribute to the Domain Renew Response. The flag is set totrue
.- Overrides:
doDomainRenew
in classDomainHandler
- Parameters:
aEvent
- TheEPPEvent
that is being handledaData
- Any data that a Server needs to send to thisEPPDomaindHandler
- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doDomainCreate
protected EPPEventResponse doDomainCreate(EPPEvent aEvent, java.lang.Object aData)
Add the bunded rate flag attribute to the Domain Create Response. The flag is set totrue
.- Overrides:
doDomainCreate
in classDomainHandler
- Parameters:
aEvent
- TheEPPEvent
that is being handledaData
- Any data that a Server needs to send to thisEPPDomaindHandler
- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doDomainTransfer
protected EPPEventResponse doDomainTransfer(EPPEvent aEvent, java.lang.Object aData)
Add the bunded rate flag attribute to the Domain Transfer Request. The flag is set totrue
.- Overrides:
doDomainTransfer
in classDomainHandler
- Parameters:
aEvent
- TheEPPEvent
that is being handledaData
- Any data that a Server needs to send to thisEPPDomaindHandler
- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doDomainInfo
protected EPPEventResponse doDomainInfo(EPPEvent aEvent, java.lang.Object aData)
Add the consent identifier to the Domain Info Response.- Overrides:
doDomainInfo
in classDomainHandler
- Parameters:
aEvent
- TheEPPEvent
that is being handledaData
- Any data that a Server needs to send to thisEPPDomaindHandler
- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
-