Package org.apache.commons.net.telnet
Interface TelnetNotificationHandler
-
- All Known Implementing Classes:
TelnetClientExample
public interface TelnetNotificationHandlerThe 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.
-
-
Field Summary
Fields Modifier and Type Field Description static intRECEIVED_COMMANDThe remote party sent aCOMMAND.static intRECEIVED_DOThe remote party sent a DO command.static intRECEIVED_DONTThe remote party sent aDONTcommand.static intRECEIVED_WILLThe remote party sent aWILLcommand.static intRECEIVED_WONTThe remote party sent aWONTcommand.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidreceivedNegotiation(int negotiation_code, int option_code)Callback method called when TelnetClient receives a command or option negotiation command
-
-
-
Field Detail
-
RECEIVED_DO
static final int RECEIVED_DO
The remote party sent a DO command.- See Also:
- Constant Field Values
-
RECEIVED_DONT
static final int RECEIVED_DONT
The remote party sent aDONTcommand.- See Also:
- Constant Field Values
-
RECEIVED_WILL
static final int RECEIVED_WILL
The remote party sent aWILLcommand.- See Also:
- Constant Field Values
-
RECEIVED_WONT
static final int RECEIVED_WONT
The remote party sent aWONTcommand.- See Also:
- Constant Field Values
-
RECEIVED_COMMAND
static final int RECEIVED_COMMAND
The remote party sent aCOMMAND.- Since:
- 2.2
- See Also:
- Constant Field Values
-
-
Method Detail
-
receivedNegotiation
void receivedNegotiation(int negotiation_code, int option_code)Callback method called when TelnetClient receives a command or option negotiation command- Parameters:
negotiation_code- type of (negotiation) command received (RECEIVED_DO, RECEIVED_DONT, RECEIVED_WILL, RECEIVED_WONT, RECEIVED_COMMAND)option_code- code of the option negotiated, or the command code itself (e.g. NOP).
-
-