Interface ScriptExecutionResult

  • All Known Implementing Classes:
    DefaultScriptExecutionResult

    public interface ScriptExecutionResult
    This interface provides generic access to Script Execution result, output and error output.
    • Method Detail

      • getScriptResult

        java.lang.Object getScriptResult()
        Possible script execution result. This method may return null when script does not produce result.
      • getOutputWriter

        java.io.Writer getOutputWriter()
        Writer which handles std out.
      • getErrorWriter

        java.io.Writer getErrorWriter()
        Writer which handles script sdt error.
      • isSuccessful

        boolean isSuccessful()
        Return information whether execution was successful.