Class ExecuteSystemCommandResponse


  • public class ExecuteSystemCommandResponse
    extends JsonrpcResponseSuccess
    JSON-RPC Response to "executeSystemCommand" Request.

     {
       "jsonrpc": "2.0",
       "id": "UUID",
       "result": {
         "stdout": string[],
         "stderr": string[],
         "exitcode": number (exit code of application: 0 = successful; otherwise error)
       }
     }
     
    • Constructor Detail

      • ExecuteSystemCommandResponse

        public ExecuteSystemCommandResponse​(java.util.UUID id,
                                            java.lang.String[] stdout,
                                            java.lang.String[] stderr,
                                            int exitcode)
    • Method Detail

      • getStdout

        public java.lang.String[] getStdout()
      • getStderr

        public java.lang.String[] getStderr()
      • getExitCode

        public int getExitCode()