Package com.verisign.epp.framework
Interface EPPConnectionHandler
-
- All Known Implementing Classes:
ConnectionHandler
public interface EPPConnectionHandlerThe EPPConnectionHandler interface defines an interface for classes that need to be notified of connection events from a Server. A subclassed instance ofEPPConnectionHandlershould be registered with theEPPDispatcherso that connection events are handled there.- See Also:
EPPDispatcher
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EPPEventResponsehandleConnection(java.lang.Object aData)The method that subclasses will implement when they wish to be notified of new connections
-
-
-
Method Detail
-
handleConnection
EPPEventResponse handleConnection(java.lang.Object aData)
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.
-
-