Package de.mud.jta

Interface Summary

FilterPlugin The filter plugin is the base interface for plugins that want to intercept the communication between front end and back end plugins.
PluginBus A plugin bus is used for communication between plugins.
PluginListener A tag interface for a plugin message listener.
PluginMessage The base interface for a plugin message.
Version
VisualPlugin To show data on-screen a plugin may have a visible component.
VisualTransferPlugin A visual plugin that also allows to copy and paste data.

Class Summary

Applet JTA - Telnet/SSH for the JAVA(tm) platform: Applet

This is the implementation of whole set of applications.

Build The build class shows the date and time if the release
Common The common part of the JTA - Telnet/SSH for the JAVA(tm) platform is handled here.
Help Help display for JTA.
Main JTA - Telnet/SSH for the JAVA(tm) platform

This is the implementation of whole set of applications.

Plugin Plugin base class for the JTA.
PluginConfig Plugin configuration container.
PluginLoader The plugin loader tries to load the plugin by name and returns a corresponding plugin object.
SmallApplet Small Telnet Applet implementation

Maintainer: Matthias L.

Wrapper To write a program using the wrapper you may use the following piece of code as an example:
   TelnetWrapper telnet = new TelnetWrapper();
   try {
     telnet.connect(args[0], 23);
     telnet.login("user", "password");
     telnet.setPrompt("user@host");
     telnet.waitfor("Terminal type?");
     telnet.send("dumb");
     System.out.println(telnet.send("ls -l"));
   } catch(java.io.IOException e) {
     e.printStackTrace();
   }
 
Please keep in mind that the password is visible for anyone who can download the class file.