Class SyncExecutionResultDefault
java.lang.Object
org.spincast.plugins.processutils.SyncExecutionResultDefault
- All Implemented Interfaces:
SyncExecutionResult
-
Constructor Summary
ConstructorsConstructorDescriptionSyncExecutionResultDefault(int exitCode, List<String> outLines, List<String> errLines) -
Method Summary
Modifier and TypeMethodDescriptionintThe exit code of the program.The System standard errors produced by the executed program.The System standard output produced by the executed program.toString()
-
Constructor Details
-
SyncExecutionResultDefault
-
-
Method Details
-
getExitCode
public int getExitCode()Description copied from interface:SyncExecutionResultThe exit code of the program.- Specified by:
getExitCodein interfaceSyncExecutionResult
-
getSystemOutLines
Description copied from interface:SyncExecutionResultThe System standard output produced by the executed program.Note that those lines will be available only if the
ExecutionOutputStrategy.BUFFERstrategy is used!- Specified by:
getSystemOutLinesin interfaceSyncExecutionResult
-
getSystemErrLines
Description copied from interface:SyncExecutionResultThe System standard errors produced by the executed program.Note that those lines will be available only if the
ExecutionOutputStrategy.BUFFERstrategy is used!- Specified by:
getSystemErrLinesin interfaceSyncExecutionResult
-
toString
-