Package com.verisign.epp.serverstub
Class OrgExtDomainHandler
- java.lang.Object
-
- com.verisign.epp.framework.EPPDomainHandler
-
- com.verisign.epp.serverstub.DomainHandler
-
- com.verisign.epp.serverstub.OrgExtDomainHandler
-
- All Implemented Interfaces:
EPPEventHandler
public class OrgExtDomainHandler extends DomainHandler
TheOrgExtDomainHandlerclass extendsDomainHandlerto include handling the Org Extension.
-
-
Constructor Summary
Constructors Constructor Description OrgExtDomainHandler()Constructs an instance of OrgExtDomainHandler
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected EPPEventResponsedoDomainCreate(EPPEvent aEvent, java.lang.Object aData)Override base handlerdoDomainCreatemethod and add handling of the Org Extension.protected EPPEventResponsedoDomainInfo(EPPEvent aEvent, java.lang.Object aData)Override base handlerdoDomainInfomethod and add handling of the Org Extension.protected EPPEventResponsedoDomainUpdate(EPPEvent aEvent, java.lang.Object aData)Override base handlerdoDomainUpdatemethod and add handling of the Org Extension.protected voidpreHandleEvent(EPPEvent aEvent, java.lang.Object aData)Ensure that there is an active session.-
Methods inherited from class com.verisign.epp.serverstub.DomainHandler
doDomainCheck, doDomainDelete, doDomainRenew, doDomainTransfer, postHandleEvent
-
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
Ensure that there is an active session.- Overrides:
preHandleEventin classDomainHandler- 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
-
doDomainInfo
protected EPPEventResponse doDomainInfo(EPPEvent aEvent, java.lang.Object aData)
Override base handlerdoDomainInfomethod and add handling of the Org Extension.- Overrides:
doDomainInfoin classDomainHandler- 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
protected EPPEventResponse doDomainCreate(EPPEvent aEvent, java.lang.Object aData)
Override base handlerdoDomainCreatemethod and add handling of the Org Extension.- Overrides:
doDomainCreatein classDomainHandler- 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
protected EPPEventResponse doDomainUpdate(EPPEvent aEvent, java.lang.Object aData)
Override base handlerdoDomainUpdatemethod and add handling of the Org Extension.- Overrides:
doDomainUpdatein classDomainHandler- 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.
-
-