Class BackendCommand


  • public class BackendCommand
    extends java.lang.Object
    This class represents a Command (row) on the Variable of the type BACKEND.
    • Constructor Summary

      Constructors 
      Constructor Description
      BackendCommand​(java.lang.String os, java.lang.String version, java.lang.String command, java.lang.String columns)
      Creates a new BackendCommand object.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getColumns()
      Returns the columns.
      java.lang.String getCommand()
      Returns the command.
      java.lang.String getOS()
      Returns the operating system of the command.
      java.lang.String getVersion()
      Returns the version.
      void setColumns​(java.lang.String columns)
      Sets the columns.
      void setCommand​(java.lang.String command)
      Sets the command.
      void setOS​(java.lang.String os)
      Sets the operating system.
      void setVersion​(java.lang.String version)
      Sets the version.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • BackendCommand

        public BackendCommand​(java.lang.String os,
                              java.lang.String version,
                              java.lang.String command,
                              java.lang.String columns)
        Creates a new BackendCommand object.
        Parameters:
        os - Operation System
        version - Version
        command - Command
        columns - Columns
    • Method Detail

      • getOS

        public java.lang.String getOS()
        Returns the operating system of the command.
        Returns:
        operating system.
      • setOS

        public void setOS​(java.lang.String os)
        Sets the operating system. The maximum length is 200 characters.
        Parameters:
        os - String which contains the operating system.
      • getVersion

        public java.lang.String getVersion()
        Returns the version.
        Returns:
        version.
      • setVersion

        public void setVersion​(java.lang.String version)
        Sets the version. The maximum length is 32 characters.
        Parameters:
        version - String which contains the version.
      • getCommand

        public java.lang.String getCommand()
        Returns the command.
        Returns:
        command.
      • setCommand

        public void setCommand​(java.lang.String command)
        Sets the command. The maximum length is 1024 characters.
        Parameters:
        command - String which contains the command.
      • getColumns

        public java.lang.String getColumns()
        Returns the columns.
        Returns:
        columns.
      • setColumns

        public void setColumns​(java.lang.String columns)
        Sets the columns. The maximum length is 1024 characters.
        Parameters:
        columns - String which contains the columns.