Package com.atlassian.bamboo.testutils
Class ProcessDescriptor
- java.lang.Object
-
- com.atlassian.bamboo.testutils.ProcessDescriptor
-
public class ProcessDescriptor extends Object
-
-
Constructor Summary
Constructors Constructor Description ProcessDescriptor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected OutputConsumerThread
getErrConsumer()
List<String>
getErrorLog()
int
getExitValue()
protected OutputConsumerThread
getOutConsumer()
List<String>
getOutputLog()
Process
getProcess()
protected Thread
getShutdownHook()
protected Timer
getTimer()
protected void
setErrConsumerThread(OutputConsumerThread errConsumer)
protected void
setOutConsumerThread(OutputConsumerThread outConsumer)
protected void
setProcess(Process process)
protected void
setShutdownHook(Thread shutdownHook)
protected void
setTimer(Timer timer)
-
-
-
Method Detail
-
getProcess
public Process getProcess()
-
setProcess
protected void setProcess(Process process)
-
getExitValue
public int getExitValue()
-
getTimer
protected Timer getTimer()
-
setTimer
protected void setTimer(Timer timer)
-
getOutConsumer
protected OutputConsumerThread getOutConsumer()
-
setOutConsumerThread
protected void setOutConsumerThread(OutputConsumerThread outConsumer)
-
getErrConsumer
protected OutputConsumerThread getErrConsumer()
-
setErrConsumerThread
protected void setErrConsumerThread(OutputConsumerThread errConsumer)
-
getShutdownHook
protected Thread getShutdownHook()
-
setShutdownHook
protected void setShutdownHook(Thread shutdownHook)
-
-