Package com.verisign.epp.serverstub
Interface TtlSubHostHandler
- All Known Implementing Classes:
TtlV1_0HostHandler
public interface TtlSubHostHandler
Sub Host Handler for use with the TTL extension.
This interface is used to support handling multiple versions of the
TTL extension, where each different version of the
TTL extension must implement this interface.
-
Method Summary
Modifier and TypeMethodDescriptionvoiddoHostCreate(EPPHostCreateCmd aCreateCommand, EPPResponse aResponse, Object aData) Handle an EPP Host Create Command.voiddoHostInfo(EPPHostInfoCmd aInfoCommand, EPPResponse aResponse, Object aData) Handle an EPP Host Info Command.voiddoHostUpdate(EPPHostUpdateCmd aUpdateCommand, EPPResponse aResponse, Object aData) Handle an EPP Host Update Command.
-
Method Details
-
doHostInfo
Handle an EPP Host Info Command.- Parameters:
aInfoCommand- Command sent by the clientaResponse- Response created previously up the stackaData- Server data. This is assumed to be an instance ofSessionData.
-
doHostCreate
Handle an EPP Host Create Command.- Parameters:
aCreateCommand- Command sent by the clientaResponse- Response created previously up the stackaData- Server data. This is assumed to be an instance ofSessionData.
-
doHostUpdate
Handle an EPP Host Update Command.- Parameters:
aUpdateCommand- Command sent by the clientaResponse- Response created previously up the stackaData- Server data. This is assumed to be an instance ofSessionData.
-