Class CallResult


  • public class CallResult
    extends Object
    The result of the call. The exit value and the written lines.
    • Constructor Detail

      • CallResult

        public CallResult​(int exitValue,
                          List<String> lines)
        The constructor with all fields.
        Parameters:
        exitValue - the exit val.
        lines - the lines.
    • Method Detail

      • getExitVal

        public int getExitVal()
        Gets the exit val.
        Returns:
        the exit val.
      • getOutLines

        public List<String> getOutLines()
        Gets the out lines.
        Returns:
        the out lines.