Package com.verisign.epp.serverstub
Class FeeDomainHandler
- java.lang.Object
-
- com.verisign.epp.framework.EPPDomainHandler
-
- com.verisign.epp.serverstub.DomainHandler
-
- com.verisign.epp.serverstub.FeeDomainHandler
-
- All Implemented Interfaces:
EPPEventHandler
public class FeeDomainHandler extends DomainHandler
TheFeeDomainHandlerclass 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 fee extension. The version specificFeeSubDomainHandleris called based on the fee extension version passed or the set of login services provided by the client.- See Also:
EPPEvent,EPPEventResponse
-
-
Constructor Summary
Constructors Constructor Description FeeDomainHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected EPPEventResponsedoDomainCheck(EPPEvent aEvent, java.lang.Object aData)Invoked when a Domain Check command is received.protected EPPEventResponsedoDomainCreate(EPPEvent aEvent, java.lang.Object aData)Invoked when a Domain Create command is received.protected EPPEventResponsedoDomainDelete(EPPEvent aEvent, java.lang.Object aData)Invoked when a Domain Delete command is received.protected EPPEventResponsedoDomainInfo(EPPEvent aEvent, java.lang.Object aData)Invoked when a Domain Info command is received.protected EPPEventResponsedoDomainRenew(EPPEvent aEvent, java.lang.Object aData)Invoked when a Domain Renew command is received.protected EPPEventResponsedoDomainTransfer(EPPEvent aEvent, java.lang.Object aData)Invoked when a Domain Transfer 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
postHandleEvent, preHandleEvent
-
Methods inherited from class com.verisign.epp.framework.EPPDomainHandler
getNamespace, handleEvent
-
-
-
-
Method Detail
-
doDomainCheck
protected EPPEventResponse doDomainCheck(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Domain Check command is received.- Overrides:
doDomainCheckin 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)
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.
-
doDomainDelete
protected EPPEventResponse doDomainDelete(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Domain Delete command is received.- Overrides:
doDomainDeletein 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.
-
doDomainRenew
protected EPPEventResponse doDomainRenew(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Domain Renew command is received.- 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.
-
doDomainTransfer
protected EPPEventResponse doDomainTransfer(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Domain Transfer command is received.- 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.
-
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.
-
-