Class RunInTerminalResponse


  • public class RunInTerminalResponse
    extends java.lang.Object
    Response to 'runInTerminal' request.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      java.lang.Integer getProcessId()
      The process ID.
      java.lang.Integer getShellProcessId()
      The process ID of the terminal shell.
      int hashCode()  
      void setProcessId​(java.lang.Integer processId)
      The process ID.
      void setShellProcessId​(java.lang.Integer shellProcessId)
      The process ID of the terminal shell.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • RunInTerminalResponse

        public RunInTerminalResponse()
    • Method Detail

      • getProcessId

        public java.lang.Integer getProcessId()
        The process ID. The value should be less than or equal to 2147483647 (2^31-1).

        This is an optional property.

      • setProcessId

        public void setProcessId​(java.lang.Integer processId)
        The process ID. The value should be less than or equal to 2147483647 (2^31-1).

        This is an optional property.

      • getShellProcessId

        public java.lang.Integer getShellProcessId()
        The process ID of the terminal shell. The value should be less than or equal to 2147483647 (2^31-1).

        This is an optional property.

      • setShellProcessId

        public void setShellProcessId​(java.lang.Integer shellProcessId)
        The process ID of the terminal shell. The value should be less than or equal to 2147483647 (2^31-1).

        This is an optional property.

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object