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 Details

    • ExecuteSystemCommandResponse

      public ExecuteSystemCommandResponse(UUID id, String[] stdout, String[] stderr, int exitcode)
  • Method Details