public class TelnetTask extends Task
| Modifier and Type | Class and Description | 
|---|---|
| class  | TelnetTask.AntTelnetClientThis class handles the abstraction of the telnet protocol. | 
| class  | TelnetTask.TelnetReadReads the output from the connected server
  until the required string is found or we time out. | 
| class  | TelnetTask.TelnetSubTaskThis class is the parent of the Read and Write tasks. | 
| class  | TelnetTask.TelnetWriteSends text to the connected server | 
description, location, project| Constructor and Description | 
|---|
| TelnetTask() | 
| Modifier and Type | Method and Description | 
|---|---|
| TelnetTask.TelnetSubTask | createRead()A string to wait for from the server. | 
| TelnetTask.TelnetSubTask | createWrite()Add text to send to the server
  A subTask <write> tag was found. | 
| void | execute()Verify that all parameters are included. | 
| void | setInitialCR(boolean b)send a carriage return after connecting; optional, defaults to false. | 
| void | setPassword(java.lang.String p)Set the the login password to use
 required if userid is set. | 
| void | setPort(int p)Set the tcp port to connect to; default is 23. | 
| void | setServer(java.lang.String m)Set the hostname or address of the remote server. | 
| void | setTimeout(java.lang.Integer i)set a default timeout in seconds to wait for a response,
 zero means forever (the default) | 
| void | setUserid(java.lang.String u)Set the the login id to use on the server;
 required if password is set. | 
bindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskTypeclone, getDescription, getLocation, getProject, setDescription, setLocation, setProjectpublic void execute()
             throws BuildException
execute in class TaskBuildException - on errorpublic void setUserid(java.lang.String u)
u - a String valuepublic void setPassword(java.lang.String p)
p - a String valuepublic void setServer(java.lang.String m)
m - a String valuepublic void setPort(int p)
p - an int valuepublic void setInitialCR(boolean b)
b - a boolean valuepublic void setTimeout(java.lang.Integer i)
i - an Integer valuepublic TelnetTask.TelnetSubTask createRead()
public TelnetTask.TelnetSubTask createWrite()