Package com.verisign.epp.serverstub
Class EmailFwdHandler
java.lang.Object
com.verisign.epp.framework.EPPEmailFwdHandler
com.verisign.epp.serverstub.EmailFwdHandler
- All Implemented Interfaces:
EPPEventHandler
- Direct Known Subclasses:
PersRegEmailFwdHandler
The
EmailFwdHandler class is a concrete implementation of the
abstract com.verisign.epp.framework.EPPEPPEmailFwdHandler
class. It defines the Server's response to all received EPP EmailFwd
Commands.- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected EPPEventResponsedoEmailFwdCheck(EPPEvent aEvent, Object aData) Invoked when a EPPEmailFwd Check command is received.protected EPPEventResponsedoEmailFwdCreate(EPPEvent aEvent, Object aData) Invoked when a EPPEmailFwd Create command is received.protected EPPEventResponsedoEmailFwdDelete(EPPEvent aEvent, Object aData) Invoked when a EPPEmailFwd Delete command is received.protected EPPEventResponsedoEmailFwdInfo(EPPEvent aEvent, Object aData) Invoked when a EPPEmailFwd Info command is received.protected EPPEventResponsedoEmailFwdRenew(EPPEvent aEvent, Object aData) Invoked when a EPPEmailFwd Renew command is received.protected EPPEventResponsedoEmailFwdTransfer(EPPEvent aEvent, Object aData) Invoked when a EPPEmailFwd Transfer command is received.protected EPPEventResponsedoEmailFwdUpdate(EPPEvent aEvent, Object aData) Invoked when a EPPEmailFwd Update command is received.protected voidpostHandleEvent(EPPEvent aEvent, Object aData) Handles any common behavior that all EPPEmailFwd commands need to execute after they execute their command specific behavior.protected voidpreHandleEvent(EPPEvent aEvent, Object aData) Handles any common behavior that all EPPEmailFwd commands need to execute before they execute their command specific behavior.Methods inherited from class com.verisign.epp.framework.EPPEmailFwdHandler
getNamespace, handleEvent
-
Constructor Details
-
EmailFwdHandler
public EmailFwdHandler()Constructs an instance of EPPEmailFwdHandler
-
-
Method Details
-
preHandleEvent
Handles any common behavior that all EPPEmailFwd commands need to execute before they execute their command specific behavior.- Overrides:
preHandleEventin classEPPEmailFwdHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPEPPEmailFwdHandlerThis is assumed to be an instance of SessionData here.- Throws:
EPPHandleEventException- Thrown if an error condition occurs. It must contain anEPPEventResponse
-
postHandleEvent
Handles any common behavior that all EPPEmailFwd commands need to execute after they execute their command specific behavior.- Overrides:
postHandleEventin classEPPEmailFwdHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPEPPEmailFwdHandler- Throws:
EPPHandleEventException- Thrown if an error condition occurs. It must contain anEPPEventResponse
-
doEmailFwdCheck
Invoked when a EPPEmailFwd Check command is received.- Specified by:
doEmailFwdCheckin classEPPEmailFwdHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPEPPEmailFwddHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doEmailFwdRenew
Invoked when a EPPEmailFwd Renew command is received.- Specified by:
doEmailFwdRenewin classEPPEmailFwdHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPEPPEmailFwddHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doEmailFwdDelete
Invoked when a EPPEmailFwd Delete command is received.- Specified by:
doEmailFwdDeletein classEPPEmailFwdHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPEPPEmailFwddHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doEmailFwdCreate
Invoked when a EPPEmailFwd Create command is received.- Specified by:
doEmailFwdCreatein classEPPEmailFwdHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPEPPEmailFwddHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doEmailFwdTransfer
Invoked when a EPPEmailFwd Transfer command is received.- Specified by:
doEmailFwdTransferin classEPPEmailFwdHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPEPPEmailFwddHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doEmailFwdUpdate
Invoked when a EPPEmailFwd Update command is received.- Specified by:
doEmailFwdUpdatein classEPPEmailFwdHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPEPPEmailFwddHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doEmailFwdInfo
Invoked when a EPPEmailFwd Info command is received.- Specified by:
doEmailFwdInfoin classEPPEmailFwdHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPEPPEmailFwddHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-