|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.tools.ant.ProjectComponent org.apache.tools.ant.Task org.apache.tools.ant.taskdefs.optional.ssh.SSHBase org.apache.tools.ant.taskdefs.optional.ssh.SSHExec
public class SSHExec
Executes a command on a remote machine via ssh.
Field Summary |
---|
Fields inherited from class org.apache.tools.ant.Task |
---|
target, taskName, taskType, wrapper |
Fields inherited from class org.apache.tools.ant.ProjectComponent |
---|
description, location, project |
Constructor Summary | |
---|---|
SSHExec()
Constructor for SSHExecTask. |
Method Summary | |
---|---|
void |
execute()
Execute the command on the remote host. |
void |
setAppend(boolean append)
Determines if the output is appended to the file given in setOutput . |
void |
setCommand(java.lang.String command)
Sets the command to execute on the remote host. |
void |
setOutput(java.io.File output)
If used, stores the output of the command to the given file. |
void |
setOutputproperty(java.lang.String property)
If set, the output of the command will be stored in the given property. |
void |
setTimeout(long timeout)
The connection can be dropped after a specified number of milliseconds. |
Methods inherited from class org.apache.tools.ant.taskdefs.optional.ssh.SSHBase |
---|
getFailonerror, getHost, getPort, getUserInfo, getVerbose, init, openSession, setFailonerror, setHost, setKeyfile, setKnownhosts, setPassphrase, setPassword, setPort, setTrust, setUsername, setVerbose |
Methods inherited from class org.apache.tools.ant.Task |
---|
bindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType |
Methods inherited from class org.apache.tools.ant.ProjectComponent |
---|
clone, getDescription, getLocation, getProject, setDescription, setLocation, setProject |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.apache.tools.ant.taskdefs.optional.ssh.LogListener |
---|
log |
Constructor Detail |
---|
public SSHExec()
Method Detail |
---|
public void setCommand(java.lang.String command)
command
- The new command valuepublic void setTimeout(long timeout)
timeout
- The new timeout value in secondspublic void setOutput(java.io.File output)
output
- The file to write to.public void setAppend(boolean append)
setOutput
. Default is false, that is, overwrite
the file.
append
- True to append to an existing file, false to overwrite.public void setOutputproperty(java.lang.String property)
property
- The name of the property in which the command output
will be stored.public void execute() throws BuildException
execute
in class Task
BuildException
- Most likely a network error or bad parameter.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |