Package com.verisign.epp.serverstub
Class TtlDomainHandler
- java.lang.Object
-
- com.verisign.epp.framework.EPPDomainHandler
-
- com.verisign.epp.serverstub.DomainHandler
-
- com.verisign.epp.serverstub.TtlDomainHandler
-
- All Implemented Interfaces:
EPPEventHandler
public class TtlDomainHandler extends DomainHandler
TheTtlDomainHandlerclass is a concrete implementation of the abstractcom.verisign.epp.framework.EPPDomainHandlerclass. It handles accepting commands in a server that supports more than one version of the TTL extension. The version specificTtlSubDomainHandleris called based on the TTL extension version passed or the set of login services provided by the client.
-
-
Constructor Summary
Constructors Constructor Description TtlDomainHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected EPPEventResponsedoDomainCreate(EPPEvent aEvent, java.lang.Object aData)Invoked when a Domain Create command is received.protected EPPEventResponsedoDomainInfo(EPPEvent aEvent, java.lang.Object aData)Invoked when a Domain Info command is received.protected EPPEventResponsedoDomainUpdate(EPPEvent aEvent, java.lang.Object aData)Invoked when a Domain Update command is received.-
Methods inherited from class com.verisign.epp.serverstub.DomainHandler
doDomainCheck, doDomainDelete, doDomainRenew, doDomainTransfer, postHandleEvent, preHandleEvent
-
Methods inherited from class com.verisign.epp.framework.EPPDomainHandler
getNamespace, handleEvent
-
-
-
-
Method Detail
-
doDomainInfo
protected EPPEventResponse doDomainInfo(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Domain Info command is received.- 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.
-
doDomainCreate
protected EPPEventResponse doDomainCreate(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Domain Create command is received.- 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.
-
doDomainUpdate
protected EPPEventResponse doDomainUpdate(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Domain Update command is received.- Overrides:
doDomainUpdatein 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.
-
-