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
TheNSContactHandlerclass is a concrete implementation of the abstractEPPContactHandlerclass. 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 EPPEventResponsedoContactCheck(EPPEvent aEvent, java.lang.Object aData)Invoked when a Contact Check Command is received.protected EPPEventResponsedoContactCreate(EPPEvent aEvent, java.lang.Object aData)Invoked when a Contact Create Command is received.protected EPPEventResponsedoContactDelete(EPPEvent aEvent, java.lang.Object aData)Invoked when a Contact Delete Command is received.protected EPPEventResponsedoContactInfo(EPPEvent aEvent, java.lang.Object aData)Invoked when a Contact Info Command is received.protected EPPEventResponsedoContactTransfer(EPPEvent aEvent, java.lang.Object aData)Invoked when a Contact Transfer Command is received.protected EPPEventResponsedoContactUpdate(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:
doContactCreatein classEPPContactHandler- Parameters:
aEvent- TheEPPEventthat 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:
doContactDeletein classEPPContactHandler- Parameters:
aEvent- TheEPPEventthat 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:
doContactInfoin classEPPContactHandler- Parameters:
aEvent- TheEPPEventthat 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:
doContactCheckin classEPPContactHandler- Parameters:
aEvent- TheEPPEventthat 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:
doContactTransferin classEPPContactHandler- Parameters:
aEvent- TheEPPEventthat 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:
doContactUpdatein classEPPContactHandler- Parameters:
aEvent- TheEPPEventthat 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)
-
-