|
|||||||||
| Home >> All >> org >> apache >> commons >> net >> [ telnet overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
org.apache.commons.net.telnet
Interface TelnetNotificationHandler

- All Known Implementing Classes:
- TelnetClientTest
- 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.
| Field Summary | |
static int |
RECEIVED_DO
The remote party sent a DO command. |
static int |
RECEIVED_DONT
The remote party sent a DONT command. |
static int |
RECEIVED_WILL
The remote party sent a WILL command. |
static int |
RECEIVED_WONT
The remote party sent a WONT command. |
| Method Summary | |
void |
receivedNegotiation(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.
- See Also:
- Constant Field Values
RECEIVED_DONT
public static final int RECEIVED_DONT
- The remote party sent a DONT command.
- See Also:
- Constant Field Values
RECEIVED_WILL
public static final int RECEIVED_WILL
- The remote party sent a WILL command.
- See Also:
- Constant Field Values
RECEIVED_WONT
public static final int RECEIVED_WONT
- The remote party sent a WONT command.
- See Also:
- Constant Field Values
| Method Detail |
receivedNegotiation
public void receivedNegotiation(int negotiation_code,
int option_code)
- Callback method called when TelnetClient receives an option
negotiation command.
|
|||||||||
| Home >> All >> org >> apache >> commons >> net >> [ telnet overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC