Package com.verisign.epp.serverstub
Class RegistryHandler
- java.lang.Object
-
- com.verisign.epp.framework.EPPRegistryHandler
-
- com.verisign.epp.serverstub.RegistryHandler
-
- All Implemented Interfaces:
EPPEventHandler
public class RegistryHandler extends EPPRegistryHandler
-
-
Constructor Summary
Constructors Constructor Description RegistryHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected EPPEventResponsedoRegistryCheck(EPPEvent aEvent, java.lang.Object aData)Invoked when a Registry Check command is received.protected EPPEventResponsedoRegistryCreate(EPPEvent aEvent, java.lang.Object aData)Invoked when a Registry Create command is received.protected EPPEventResponsedoRegistryDelete(EPPEvent aEvent, java.lang.Object aData)Invoked when a Registry Delete command is received.protected EPPEventResponsedoRegistryInfo(EPPEvent aEvent, java.lang.Object aData)Invoked when a Registry Info command is received.protected EPPEventResponsedoRegistryUpdate(EPPEvent aEvent, java.lang.Object aData)Invoked when a Registry Update command is received.-
Methods inherited from class com.verisign.epp.framework.EPPRegistryHandler
getNamespace, handleEvent, postHandleEvent, preHandleEvent
-
-
-
-
Method Detail
-
doRegistryCreate
protected EPPEventResponse doRegistryCreate(EPPEvent aEvent, java.lang.Object aData)
Description copied from class:EPPRegistryHandlerInvoked when a Registry Create command is received. Subclasses should define the behavior when a Registry Create command is received.- Specified by:
doRegistryCreatein classEPPRegistryHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPRegistryHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doRegistryUpdate
protected EPPEventResponse doRegistryUpdate(EPPEvent aEvent, java.lang.Object aData)
Description copied from class:EPPRegistryHandlerInvoked when a Registry Update command is received. Subclasses should define the behavior when a Registry Update command is received.- Specified by:
doRegistryUpdatein classEPPRegistryHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPRegistryHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doRegistryCheck
protected EPPEventResponse doRegistryCheck(EPPEvent aEvent, java.lang.Object aData)
Description copied from class:EPPRegistryHandlerInvoked when a Registry Check command is received. Subclasses should define the behavior when a Registry Check command is received.- Specified by:
doRegistryCheckin classEPPRegistryHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPRegistryHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doRegistryInfo
protected EPPEventResponse doRegistryInfo(EPPEvent aEvent, java.lang.Object aData)
Description copied from class:EPPRegistryHandlerInvoked when a Registry Info command is received. Subclasses should define the behavior when a Registry Info command is received.- Specified by:
doRegistryInfoin classEPPRegistryHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPRegistryHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doRegistryDelete
protected EPPEventResponse doRegistryDelete(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Registry Delete command is received.- Specified by:
doRegistryDeletein classEPPRegistryHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPRegistryHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
-