org.apache.tools.ant.taskdefs.optional.net

Class RExecTask

public class RExecTask extends Task

Automates the rexec protocol.

Since: Ant 1.6

Nested Class Summary
classRExecTask.AntRExecClient
This class handles the abstraction of the rexec protocol.
classRExecTask.RExecRead
Reads the output from the connected server until the required string is found or we time out.
classRExecTask.RExecSubTask
This class is the parent of the Read and Write tasks.
classRExecTask.RExecWrite
Sends text to the connected server
Method Summary
RExecTask.RExecSubTaskcreateRead()
A string to wait for from the server.
RExecTask.RExecSubTaskcreateWrite()
Add text to send to the server A subTask <write> tag was found.
voidexecute()
Verify that all parameters are included.
voidsetCommand(String c)
Set the the comand to execute on the server;
voidsetInitialCR(boolean b)
send a carriage return after connecting; optional, defaults to false.
voidsetPassword(String p)
Set the the login password to use required if userid is set.
voidsetPort(int p)
Set the tcp port to connect to; default is 23.
voidsetServer(String m)
Set the hostname or address of the remote server.
voidsetTimeout(Integer i)
set a default timeout in seconds to wait for a response, zero means forever (the default)
voidsetUserid(String u)
Set the the login id to use on the server; required if password is set.

Method Detail

createRead

public RExecTask.RExecSubTask createRead()
A string to wait for from the server. A subTask <read> tag was found. Create the object, Save it in our list, and return it.

createWrite

public RExecTask.RExecSubTask createWrite()
Add text to send to the server A subTask <write> tag was found. Create the object, Save it in our list, and return it.

execute

public void execute()
Verify that all parameters are included. Connect and possibly login Iterate through the list of Reads and writes

setCommand

public void setCommand(String c)
Set the the comand to execute on the server;

setInitialCR

public void setInitialCR(boolean b)
send a carriage return after connecting; optional, defaults to false.

setPassword

public void setPassword(String p)
Set the the login password to use required if userid is set.

setPort

public void setPort(int p)
Set the tcp port to connect to; default is 23.

setServer

public void setServer(String m)
Set the hostname or address of the remote server.

setTimeout

public void setTimeout(Integer i)
set a default timeout in seconds to wait for a response, zero means forever (the default)

setUserid

public void setUserid(String u)
Set the the login id to use on the server; required if password is set.
Copyright