Package com.verisign.epp.framework
Interface EPPConnectionHandler
- All Known Implementing Classes:
ConnectionHandler
public interface EPPConnectionHandler
The EPPConnectionHandler interface defines an interface for classes that
need to be notified of connection events from a Server. A subclassed
instance of
EPPConnectionHandler should be registered with the
EPPDispatcher so that connection events are handled there.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionhandleConnection(Object aData) The method that subclasses will implement when they wish to be notified of new connections
-
Method Details
-
handleConnection
The method that subclasses will implement when they wish to be notified of new connections- Parameters:
aData- Any data that a Server needs to send to thisEPPConnectionHandlerinstance.- Returns:
- EPPEventResponse A reponse that an
EPPConnectionHandlercan send when notified of a connection.
-