| Home >> All >> org >> apache >> commons >> net >> [ telnet Javadoc ] |
org.apache.commons.net.telnet: Javadoc index of package org.apache.commons.net.telnet.
Package Samples:
org.apache.commons.net.telnet
Classes:
TelnetClient: The TelnetClient class implements the simple network virtual terminal (NVT) for the Telnet protocol according to RFC 854. It does not implement any of the extra Telnet options because it is meant to be used within a Java program providing automated access to Telnet accessible resources. The class can be used by first connecting to a server using the SocketClient connect 55 method. Then an InputStream and OutputStream for sending and receiving data over the Telnet connection can be obtained by using the getInputStream() 55 and getOutputStream() 55 methods. When you finish using the streams, you ...
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.
TelnetOptionHandlerTestAbstract: The TelnetOptionHandlerTest is the abstract class for testing TelnetOptionHandler. It can be used to derive the actual test classes for TelnetOptionHadler derived classes, by adding creation of three new option handlers and testing of the specific subnegotiation behaviour.
TelnetOptionHandler: The TelnetOptionHandler class is the base class to be used for implementing handlers for telnet options. TelnetOptionHandler implements basic option handling functionality and defines abstract methods that must be implemented to define subnegotiation behaviour.
TelnetOption: The TelnetOption class cannot be instantiated and only serves as a storehouse for telnet option constants. Details regarding Telnet option specification can be found in RFC 855.
InvalidTelnetOptionException: The InvalidTelnetOptionException is the exception that is thrown whenever a TelnetOptionHandler with an invlaid option code is registered in TelnetClient with addOptionHandler.
TelnetTestResponder: Simple stream responder. Waits for strings on an input stream and answers sending corresponfing strings on an output stream. The reader runs in a separate thread.
TelnetClientFunctionalTest: JUnit functional test for TelnetClient. Connects to the weather forecast service rainmaker.wunderground.com and asks for Los Angeles forecast.
TelnetCommand: The TelnetCommand class cannot be instantiated and only serves as a storehouse for telnet command constants.
SimpleOptionHandler: Simple option handler that can be used for options that don't require subnegotiation.
TelnetTestSimpleServer: Simple TCP server. Waits for connections on a TCP port in a separate thread.
TelnetClientTest: JUnit test class for TelnetClient.s Implements protocol compliance tests
SuppressGAOptionHandler: Implements the telnet suppress go ahead option RFC 858.
TerminalTypeOptionHandler: Implements the telnet terminal type option RFC 1091.
InvalidTelnetOptionExceptionTest: JUnit test class for InvalidTelnetOptionException
TerminalTypeOptionHandlerTest: JUnit test class for TerminalTypeOptionHandler
SuppressGAOptionHandlerTest: JUnit test class for SuppressGAOptionHandler
EchoOptionHandler: Implements the telnet echo option RFC 857.
SimpleOptionHandlerTest: JUnit test class for SimpleOptionHandler
EchoOptionHandlerTest: JUnit test class for EchoOptionHandler
TelnetOptionTest: JUnit test class for TelnetOption
TelnetInputStream
TelnetOutputStream
Telnet
| Home | Contact Us | Privacy Policy | Terms of Service |