Class SecureAuthInfoDomainHandler
- java.lang.Object
-
- com.verisign.epp.framework.EPPDomainHandler
-
- com.verisign.epp.serverstub.secureauthinfo.v1_0.SecureAuthInfoDomainHandler
-
- All Implemented Interfaces:
EPPEventHandler
public class SecureAuthInfoDomainHandler extends EPPDomainHandler
TheDomainHandlerclass is a concrete implementation of the abstractcom.verisign.epp.framework.EPPDomainHandlerclass. It defines the Server's behavior with implementing the Secure Authorization Information for Transfer.- See Also:
EPPEvent,EPPEventResponse
-
-
Constructor Summary
Constructors Constructor Description SecureAuthInfoDomainHandler()Constructs an instance of DomainHandler
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EPPEventResponsedoDomainCheck(EPPEvent aEvent, java.lang.Object aData)Invoked when a Domain Check command is received.EPPEventResponsedoDomainCreate(EPPEvent aEvent, java.lang.Object aData)Invoked when a Domain Create command is received.EPPEventResponsedoDomainDelete(EPPEvent aEvent, java.lang.Object aData)Invoked when a Domain Delete command is received.EPPEventResponsedoDomainInfo(EPPEvent aEvent, java.lang.Object aData)Invoked when a Domain Info command is received.EPPEventResponsedoDomainRenew(EPPEvent aEvent, java.lang.Object aData)Invoked when a Domain Renew command is received.EPPEventResponsedoDomainTransfer(EPPEvent aEvent, java.lang.Object aData)Invoked when a Domain Transfer command is received.EPPEventResponsedoDomainUpdate(EPPEvent aEvent, java.lang.Object aData)Invoked when a Domain Update command is received.protected voidpostHandleEvent(EPPEvent aEvent, java.lang.Object aData)Handles any common behavior that all Domain 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 Domain commands need to execute before they execute their command specific behavior.-
Methods inherited from class com.verisign.epp.framework.EPPDomainHandler
getNamespace, handleEvent
-
-
-
-
Method Detail
-
preHandleEvent
protected void preHandleEvent(EPPEvent aEvent, java.lang.Object aData) throws EPPHandleEventException
Handles any common behavior that all Domain commands need to execute before they execute their command specific behavior.- Overrides:
preHandleEventin classEPPDomainHandler- 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 Domain commands need to execute after they execute their command specific behavior.- Overrides:
postHandleEventin classEPPDomainHandler- 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
-
doDomainCheck
public EPPEventResponse doDomainCheck(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Domain Check command is received.- Specified by:
doDomainCheckin classEPPDomainHandler- 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.
-
doDomainRenew
public EPPEventResponse doDomainRenew(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Domain Renew command is received.- Specified by:
doDomainRenewin classEPPDomainHandler- 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.
-
doDomainDelete
public EPPEventResponse doDomainDelete(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Domain Delete command is received.- Specified by:
doDomainDeletein classEPPDomainHandler- 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.
-
doDomainCreate
public EPPEventResponse doDomainCreate(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Domain Create command is received.- Specified by:
doDomainCreatein classEPPDomainHandler- 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.
-
doDomainTransfer
public EPPEventResponse doDomainTransfer(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Domain Transfer command is received.- Specified by:
doDomainTransferin classEPPDomainHandler- 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.
-
doDomainUpdate
public EPPEventResponse doDomainUpdate(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Domain Update command is received.- Specified by:
doDomainUpdatein classEPPDomainHandler- 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.
-
doDomainInfo
public EPPEventResponse doDomainInfo(EPPEvent aEvent, java.lang.Object aData)
Invoked when a Domain Info command is received.- Specified by:
doDomainInfoin classEPPDomainHandler- 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.
-
-