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 EPPEventResponse
doRegistryCheck(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Registry Check command is received.protected EPPEventResponse
doRegistryCreate(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Registry Create command is received.protected EPPEventResponse
doRegistryDelete(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Registry Delete command is received.protected EPPEventResponse
doRegistryInfo(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Registry Info command is received.protected EPPEventResponse
doRegistryUpdate(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:EPPRegistryHandler
Invoked when a Registry Create command is received. Subclasses should define the behavior when a Registry Create command is received.- Specified by:
doRegistryCreate
in classEPPRegistryHandler
- Parameters:
aEvent
- TheEPPEvent
that 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:EPPRegistryHandler
Invoked when a Registry Update command is received. Subclasses should define the behavior when a Registry Update command is received.- Specified by:
doRegistryUpdate
in classEPPRegistryHandler
- Parameters:
aEvent
- TheEPPEvent
that 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:EPPRegistryHandler
Invoked when a Registry Check command is received. Subclasses should define the behavior when a Registry Check command is received.- Specified by:
doRegistryCheck
in classEPPRegistryHandler
- Parameters:
aEvent
- TheEPPEvent
that 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:EPPRegistryHandler
Invoked when a Registry Info command is received. Subclasses should define the behavior when a Registry Info command is received.- Specified by:
doRegistryInfo
in classEPPRegistryHandler
- Parameters:
aEvent
- TheEPPEvent
that 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:
doRegistryDelete
in classEPPRegistryHandler
- Parameters:
aEvent
- TheEPPEvent
that 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.
-
-