Package com.verisign.epp.transport
Interface ServerEventHandler
-
- All Superinterfaces:
java.lang.Cloneable
- All Known Implementing Classes:
ClientConnectionHandler,EPPQuicClientConnectionHandler
public interface ServerEventHandler extends java.lang.CloneableInterface to handle new EPP connections that includes returning the EPP greeting and starting an EPP command processing loop
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Objectclone()Clone theServerEventHandlerstate.voidhandleConnection(java.io.InputStream aInputStream, java.io.OutputStream aOutputStream)Handle a new EPP connection that includes returning the EPP greeting and starting an EPP command processing loop
-
-
-
Method Detail
-
handleConnection
void handleConnection(java.io.InputStream aInputStream, java.io.OutputStream aOutputStream)Handle a new EPP connection that includes returning the EPP greeting and starting an EPP command processing loop- Parameters:
aInputStream- Input stream associated with the new EPP connectionaOutputStream- Output stream associated with the new EPP connection
-
clone
java.lang.Object clone() throws java.lang.CloneNotSupportedExceptionClone theServerEventHandlerstate.- Returns:
ServerEventHandlerinstance- Throws:
java.lang.CloneNotSupportedException- Exception with cloning
-
-