Package com.verisign.epp.framework
Class EPPDomainHandler
java.lang.Object
com.verisign.epp.framework.EPPDomainHandler
- All Implemented Interfaces:
EPPEventHandler
- Direct Known Subclasses:
BalanceDomainHandler,CoaDomainHandler,DomainHandler,IdnDomainHandler,LowBalanceDomainHandler,NSDomainHandler,RgpDomainHandler,SecDNSDomainHandler,SecureAuthInfoDomainHandler,SyncDomainHandler
The
EPPDomainHandler class provides an interface for handling
EPP Domain Commands in a Server implementation. EPPEvents are handled by the
handleEvent() method here and routed to the appropriate abstract member
function. Subclasses should override the abstract methods to define the
desired behavior of a particular command when it is received. A subclassed
instance of EPPDomainHandler should be registered with the
EPPDispatcher so that EEPEvents related to the Domain Mapping
will be handled there. - See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionWhenever an EPPDomainHandler instance is created load the corresponsding Map Factory into the Codec -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract EPPEventResponsedoDomainCheck(EPPEvent aEvent, Object aData) Invoked when a Domain Check command is received.protected abstract EPPEventResponsedoDomainCreate(EPPEvent aEvent, Object aData) Invoked when a Domain Create command is received.protected abstract EPPEventResponsedoDomainDelete(EPPEvent aEvent, Object aData) Invoked when a Domain Delete command is received.protected abstract EPPEventResponsedoDomainInfo(EPPEvent aEvent, Object aData) Invoked when a Domain Info command is received.protected abstract EPPEventResponsedoDomainRenew(EPPEvent aEvent, Object aData) Invoked when a Domain Renew command is received.protected abstract EPPEventResponsedoDomainTransfer(EPPEvent aEvent, Object aData) Invoked when a Domain Transfer command is received.protected abstract EPPEventResponsedoDomainUpdate(EPPEvent aEvent, Object aData) Invoked when a Domain Update command is received.final StringReturns the Namespace that this handler supports.final EPPEventResponsehandleEvent(EPPEvent aEvent, Object aData) This method receives anEPPEventand routes it to the appropriate abstract method.protected voidpostHandleEvent(EPPEvent aEvent, Object aData) Handles any common behavior that all domain commands need to execute after they execute their command specific behavior.protected voidpreHandleEvent(EPPEvent aEvent, Object aData) Handles any common behavior that all domain commands need to execute before they execute their command specific behavior.
-
Constructor Details
-
EPPDomainHandler
public EPPDomainHandler()Whenever an EPPDomainHandler instance is created load the corresponsding Map Factory into the Codec
-
-
Method Details
-
getNamespace
Returns the Namespace that this handler supports. In this case, domain.- Specified by:
getNamespacein interfaceEPPEventHandler- Returns:
- String The Namespace that this handler supports
-
handleEvent
This method receives anEPPEventand routes it to the appropriate abstract method.- Specified by:
handleEventin interfaceEPPEventHandler- Parameters:
aEvent- AnEPPEventthat contains theEPPCommandaData- Any data that a Server needs to send to thisEPPContactHandlerinstance- Returns:
- DOCUMENT ME!
- Throws:
EPPEventException- Thrown if an unrecognizedEPPEventis received
-
preHandleEvent
Handles any common behavior that all domain commands need to execute before they execute their command specific behavior. The default implementation does nothing.- 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
-
postHandleEvent
Handles any common behavior that all domain commands need to execute after they execute their command specific behavior. The default implementation does nothing- 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
-
doDomainCreate
Invoked when a Domain Create command is received. Subclasses should define the behavior when a Domain Create command is received.- Parameters:
aEvent- TheEPPEventthat is being handledaData- Any data that a Server needs to send to thisEPPDomainHandler- Returns:
- EPPEventResponse The response that should be sent back to the client.
-
doDomainDelete
Invoked when a Domain Delete command is received. Subclasses should define the behavior when a Domain Delete command is received.- 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
Invoked when a Domain Info command is received. Subclasses should define the behavior when a Domain Info command is received.- 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.
-
doDomainCheck
Invoked when a Domain Check command is received. Subclasses should define the behavior when a Domain Check command is received.- 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
Invoked when a Domain Renew command is received. Subclasses should define the behavior when a Domain Renew command is received.- 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
Invoked when a Domain Transfer command is received. Subclasses should define the behavior when a Domain Transfer command is received.- 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
Invoked when a Domain Update command is received. Subclasses should define the behavior when a Domain Update command is received.- 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.
-