Class SecureAuthInfoContactHandler
- java.lang.Object
-
- com.verisign.epp.framework.EPPContactHandler
-
- com.verisign.epp.serverstub.secureauthinfo.v1_0.SecureAuthInfoContactHandler
-
- All Implemented Interfaces:
EPPEventHandler
public class SecureAuthInfoContactHandler extends EPPContactHandler
TheContactHandlerclass is a concrete implementation of the abstractcom.verisign.epp.framework.EPPContactHandlerclass. It defines the Server's response to all received EPP Host Commands.
- See Also:
EPPEvent,EPPEventResponse
-
-
Constructor Summary
Constructors Constructor Description SecureAuthInfoContactHandler()Constructs an instance ofContactHandler
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EPPEventResponsedoContactCheck(EPPEvent aEvent, java.lang.Object aData)Invoked when a Contact Check command is received.EPPEventResponsedoContactCreate(EPPEvent aEvent, java.lang.Object aData)Invoked when a Contact Create command is received.EPPEventResponsedoContactDelete(EPPEvent aEvent, java.lang.Object aData)Invoked when a Contact Delete command is received.EPPEventResponsedoContactInfo(EPPEvent aEvent, java.lang.Object aData)Invoked when a Contact Info command is received.EPPEventResponsedoContactTransfer(EPPEvent aEvent, java.lang.Object aData)Invoked when a Contact Transfer command is received.EPPEventResponsedoContactUpdate(EPPEvent aEvent, java.lang.Object aData)Invoked when a Contact Update command is received.protected voidpostHandleEvent(EPPEvent aEvent, java.lang.Object aData)Handles any common behavior that all Contact commands need to execute after they execute their command specific behavior.protected voidpreHandleEvent(EPPEvent aEvent, java.lang.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
-
-
-
-
Method Detail
-
preHandleEvent
protected void preHandleEvent(EPPEvent aEvent, java.lang.Object aData) throws EPPHandleEventException
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
protected void postHandleEvent(EPPEvent aEvent, java.lang.Object aData) throws EPPHandleEventException
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
public EPPEventResponse doContactDelete(EPPEvent aEvent, java.lang.Object aData)
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
public EPPEventResponse doContactCreate(EPPEvent aEvent, java.lang.Object aData)
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
public EPPEventResponse doContactUpdate(EPPEvent aEvent, java.lang.Object aData)
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
public EPPEventResponse doContactInfo(EPPEvent aEvent, java.lang.Object aData)
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
public EPPEventResponse doContactTransfer(EPPEvent aEvent, java.lang.Object aData)
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
public EPPEventResponse doContactCheck(EPPEvent aEvent, java.lang.Object aData)
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.
-
-