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
TheContactHandler
class is a concrete implementation of the abstractcom.verisign.epp.framework.EPPContactHandler
class. 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 EPPEventResponse
doContactCheck(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Check command is received.EPPEventResponse
doContactCreate(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Create command is received.EPPEventResponse
doContactDelete(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Delete command is received.EPPEventResponse
doContactInfo(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Info command is received.EPPEventResponse
doContactTransfer(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Transfer command is received.EPPEventResponse
doContactUpdate(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Contact Update command is received.protected void
postHandleEvent(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 void
preHandleEvent(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:
preHandleEvent
in classEPPContactHandler
- Parameters:
aEvent
- TheEPPEvent
that is being handledaData
- Any data that a Server needs to send to thisEPPDomainHandler
This 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:
postHandleEvent
in classEPPContactHandler
- Parameters:
aEvent
- TheEPPEvent
that 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:
doContactDelete
in classEPPContactHandler
- Parameters:
aEvent
- TheEPPEvent
that 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:
doContactCreate
in classEPPContactHandler
- Parameters:
aEvent
- TheEPPEvent
that 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:
doContactUpdate
in classEPPContactHandler
- Parameters:
aEvent
- TheEPPEvent
that 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:
doContactInfo
in classEPPContactHandler
- Parameters:
aEvent
- TheEPPEvent
that 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:
doContactTransfer
in classEPPContactHandler
- Parameters:
aEvent
- TheEPPEvent
that 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:
doContactCheck
in classEPPContactHandler
- Parameters:
aEvent
- TheEPPEvent
that 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.
-
-