org.apache.commons.net.telnet

Interface TelnetNotificationHandler

public interface TelnetNotificationHandler

The TelnetNotificationHandler interface can be used to handle notification of options negotiation commands received on a telnet session.

The user can implement this interface and register a TelnetNotificationHandler by using the registerNotificationHandler() of TelnetClient to be notified of option negotiation commands.

Author: Bruno D'Avanzo

Field Summary
static intRECEIVED_DO
The remote party sent a DO command.
static intRECEIVED_DONT
The remote party sent a DONT command.
static intRECEIVED_WILL
The remote party sent a WILL command.
static intRECEIVED_WONT
The remote party sent a WONT command.
Method Summary
voidreceivedNegotiation(int negotiation_code, int option_code)
Callback method called when TelnetClient receives an option negotiation command.

Field Detail

RECEIVED_DO

public static final int RECEIVED_DO
The remote party sent a DO command.

RECEIVED_DONT

public static final int RECEIVED_DONT
The remote party sent a DONT command.

RECEIVED_WILL

public static final int RECEIVED_WILL
The remote party sent a WILL command.

RECEIVED_WONT

public static final int RECEIVED_WONT
The remote party sent a WONT command.

Method Detail

receivedNegotiation

public void receivedNegotiation(int negotiation_code, int option_code)
Callback method called when TelnetClient receives an option negotiation command.

Parameters: negotiation_code - type of negotiation command received (RECEIVED_DO, RECEIVED_DONT, RECEIVED_WILL, RECEIVED_WONT)

option_code - code of the option negotiated