Class BackendCommand

java.lang.Object
com.uc4.api.objects.BackendCommand

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

    • BackendCommand

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

    • getOS

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

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

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

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

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

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

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

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