Package com.verisign.epp.serverstub
Class NSContactHandler
- java.lang.Object
-
- com.verisign.epp.framework.EPPContactHandler
-
- com.verisign.epp.serverstub.NSContactHandler
-
- All Implemented Interfaces:
EPPEventHandler
public class NSContactHandler extends EPPContactHandler
TheNSContactHandler
class is a concrete implementation of the abstractEPPContactHandler
class. It defines the Server's response to all received EPP contact Commands.
-
-
Constructor Summary
Constructors Constructor Description NSContactHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected EPPEventResponse
doContactCheck(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Check Command is received.protected EPPEventResponse
doContactCreate(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Create Command is received.protected EPPEventResponse
doContactDelete(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Delete Command is received.protected EPPEventResponse
doContactInfo(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Info Command is received.protected EPPEventResponse
doContactTransfer(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Transfer Command is received.protected EPPEventResponse
doContactUpdate(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Update Command is received.-
Methods inherited from class com.verisign.epp.framework.EPPContactHandler
getNamespace, handleEvent, postHandleEvent, preHandleEvent
-
-
-
-
Method Detail
-
doContactCreate
protected EPPEventResponse doContactCreate(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Create Command is received. The handler routes the command to the appropriate handler based on the extensions and data included in the command.- Specified by:
doContactCreate
in classEPPContactHandler
- Parameters:
aEvent
- TheEPPEvent
that is being handledaData
- Any data that a Server needs to send to thisEPPContactHandler
- Returns:
- The response that should be sent back to the client.
- See Also:
EPPContactHandler.doContactCreate(com.verisign.epp.framework.EPPEvent, java.lang.Object)
-
doContactDelete
protected EPPEventResponse doContactDelete(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Delete Command is received. The handler routes the command to the appropriate handler based on the extensions and data included in the command.- Specified by:
doContactDelete
in classEPPContactHandler
- Parameters:
aEvent
- TheEPPEvent
that is being handledaData
- Any data that a Server needs to send to thisEPPContactHandler
- Returns:
- The response that should be sent back to the client.
- See Also:
EPPContactHandler.doContactDelete(com.verisign.epp.framework.EPPEvent, java.lang.Object)
-
doContactInfo
protected EPPEventResponse doContactInfo(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Info Command is received. The handler routes the command to the appropriate handler based on the extensions and data included in the command.- Specified by:
doContactInfo
in classEPPContactHandler
- Parameters:
aEvent
- TheEPPEvent
that is being handledaData
- Any data that a Server needs to send to thisEPPContactHandler
- Returns:
- The response that should be sent back to the client.
- See Also:
EPPContactHandler.doContactInfo(com.verisign.epp.framework.EPPEvent, java.lang.Object)
-
doContactCheck
protected EPPEventResponse doContactCheck(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Check Command is received. The handler routes the command to the appropriate handler based on the extensions and data included in the command.- Specified by:
doContactCheck
in classEPPContactHandler
- Parameters:
aEvent
- TheEPPEvent
that is being handledaData
- Any data that a Server needs to send to thisEPPContactHandler
- Returns:
- The response that should be sent back to the client.
- See Also:
EPPContactHandler.doContactCheck(com.verisign.epp.framework.EPPEvent, java.lang.Object)
-
doContactTransfer
protected EPPEventResponse doContactTransfer(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Transfer Command is received. The handler routes the command to the appropriate handler based on the extensions and data included in the command.- Specified by:
doContactTransfer
in classEPPContactHandler
- Parameters:
aEvent
- TheEPPEvent
that is being handledaData
- Any data that a Server needs to send to thisEPPContactHandler
- Returns:
- The response that should be sent back to the client.
- See Also:
EPPContactHandler.doContactTransfer(com.verisign.epp.framework.EPPEvent, java.lang.Object)
-
doContactUpdate
protected EPPEventResponse doContactUpdate(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Update Command is received. The handler routes the command to the appropriate handler based on the extensions and data included in the command.- Specified by:
doContactUpdate
in classEPPContactHandler
- Parameters:
aEvent
- TheEPPEvent
that is being handledaData
- Any data that a Server needs to send to thisEPPContactHandler
- Returns:
- The response that should be sent back to the client.
- See Also:
EPPContactHandler.doContactUpdate(com.verisign.epp.framework.EPPEvent, java.lang.Object)
-
-