Class SecureAuthInfoContactHandler
java.lang.Object
com.verisign.epp.framework.EPPContactHandler
com.verisign.epp.serverstub.secureauthinfo.v1_0.SecureAuthInfoContactHandler
- All Implemented Interfaces:
EPPEventHandler
The
ContactHandler class is a concrete implementation of the
abstract com.verisign.epp.framework.EPPContactHandler class. It
defines the Server's response to all received EPP Host Commands. - See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondoContactCheck(EPPEvent aEvent, Object aData) Invoked when a Contact Check command is received.doContactCreate(EPPEvent aEvent, Object aData) Invoked when a Contact Create command is received.doContactDelete(EPPEvent aEvent, Object aData) Invoked when a Contact Delete command is received.doContactInfo(EPPEvent aEvent, Object aData) Invoked when a Contact Info command is received.doContactTransfer(EPPEvent aEvent, Object aData) Invoked when a Contact Transfer command is received.doContactUpdate(EPPEvent aEvent, Object aData) Invoked when a Contact Update command is received.protected voidpostHandleEvent(EPPEvent aEvent, Object aData) Handles any common behavior that all Contact commands need to execute after they execute their command specific behavior.protected voidpreHandleEvent(EPPEvent aEvent, Object aData) Handles any common behavior that all Contact commands need to execute before they execute their command specific behavior.Methods inherited from class com.verisign.epp.framework.EPPContactHandler
getNamespace, handleEvent
-
Constructor Details
-
SecureAuthInfoContactHandler
public SecureAuthInfoContactHandler()Constructs an instance ofContactHandler
-
-
Method Details
-
preHandleEvent
Handles any common behavior that all Contact commands need to execute before they execute their command specific behavior.- Overrides:
preHandleEventin classEPPContactHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPDomainHandlerThis 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 Contact commands need to execute after they execute their command specific behavior.- Overrides:
postHandleEventin classEPPContactHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPDomainHandler- Throws:
EPPHandleEventException- Thrown if an error condition occurs. It must contain anEPPEventResponse
-
doContactDelete
Invoked when a Contact Delete command is received.- Specified by:
doContactDeletein classEPPContactHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPDomaindHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doContactCreate
Invoked when a Contact Create command is received.- Specified by:
doContactCreatein classEPPContactHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPDomaindHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doContactUpdate
Invoked when a Contact Update command is received.- Specified by:
doContactUpdatein classEPPContactHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPDomaindHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doContactInfo
Invoked when a Contact Info command is received.- Specified by:
doContactInfoin classEPPContactHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPDomaindHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doContactTransfer
Invoked when a Contact Transfer command is received.- Specified by:
doContactTransferin classEPPContactHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPDomaindHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doContactCheck
Invoked when a Contact Check command is received.- Specified by:
doContactCheckin classEPPContactHandler- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPDomaindHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-