Package io.ebean.docker.commands.process
Class ProcessResult
- java.lang.Object
-
- io.ebean.docker.commands.process.ProcessResult
-
public class ProcessResult extends Object
The result of an external process call.
-
-
Constructor Summary
Constructors Constructor Description ProcessResult(int result, List<String> out)Create with the result exit code and std out and err content.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringdebug()Return debug output.List<String>getOutLines()Return the STD OUT lines.booleansuccess()Return true if exit result was 0.
-
-
-
Constructor Detail
-
ProcessResult
public ProcessResult(int result, List<String> out)
Create with the result exit code and std out and err content.
-
-