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 ofEPPConnectionHandler
should be registered with theEPPDispatcher
so that connection events are handled there.- See Also:
EPPDispatcher
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EPPEventResponse
handleConnection(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 thisEPPConnectionHandler
instance.- Returns:
- EPPEventResponse A reponse that an
EPPConnectionHandler
can send when notified of a connection.
-
-