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
ThePersRegDomainHandlerclass extendsDomainHandlerto 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 EPPEventResponsedoDomainCreate(EPPEvent aEvent, java.lang.Object aData)Add the bunded rate flag attribute to the Domain Create Response.protected EPPEventResponsedoDomainInfo(EPPEvent aEvent, java.lang.Object aData)Add the consent identifier to the Domain Info Response.protected EPPEventResponsedoDomainRenew(EPPEvent aEvent, java.lang.Object aData)Add the bunded rate flag attribute to the Domain Renew Response.protected EPPEventResponsedoDomainTransfer(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:
doDomainRenewin classDomainHandler- Parameters:
aEvent- TheEPPEventthat 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:
doDomainCreatein classDomainHandler- Parameters:
aEvent- TheEPPEventthat 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:
doDomainTransferin classDomainHandler- Parameters:
aEvent- TheEPPEventthat 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:
doDomainInfoin classDomainHandler- Parameters:
aEvent- TheEPPEventthat 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.
-
-