public interface BaseExecSpec extends ProcessForkOptions
| Modifier and Type | Method and Description |
|---|---|
java.util.List<java.lang.String> |
getCommandLine()
Returns the full command line, including the executable plus its arguments.
|
java.io.OutputStream |
getErrorOutput()
Returns the output stream to consume standard error from the process executing the command.
|
java.io.InputStream |
getStandardInput()
Returns the standard input stream for the process executing the command.
|
java.io.OutputStream |
getStandardOutput()
Returns the output stream to consume standard output from the process executing the command.
|
boolean |
isIgnoreExitValue()
Tells whether a non-zero exit value is ignored, or an exception thrown.
|
BaseExecSpec |
setErrorOutput(java.io.OutputStream outputStream)
Sets the output stream to consume standard error from the process executing the command.
|
BaseExecSpec |
setIgnoreExitValue(boolean ignoreExitValue)
Sets whether a non-zero exit value is ignored, or an exception thrown.
|
BaseExecSpec |
setStandardInput(java.io.InputStream inputStream)
Sets the standard input stream for the process executing the command.
|
BaseExecSpec |
setStandardOutput(java.io.OutputStream outputStream)
Sets the output stream to consume standard output from the process executing the command.
|
copyTo, environment, environment, executable, getEnvironment, getExecutable, getWorkingDir, setEnvironment, setExecutable, setWorkingDir, workingDirBaseExecSpec setIgnoreExitValue(boolean ignoreExitValue)
ignoreExitValue - whether a non-zero exit value is ignored, or an exception thrownboolean isIgnoreExitValue()
false.BaseExecSpec setStandardInput(java.io.InputStream inputStream)
inputStream - The standard input stream for the process. Must not be null.java.io.InputStream getStandardInput()
BaseExecSpec setStandardOutput(java.io.OutputStream outputStream)
outputStream - The standard output stream for the process. Must not be null.java.io.OutputStream getStandardOutput()
System.out.BaseExecSpec setErrorOutput(java.io.OutputStream outputStream)
outputStream - The standard output error stream for the process. Must not be null.java.io.OutputStream getErrorOutput()
System.err.java.util.List<java.lang.String> getCommandLine()