Package com.uc4.api.objects
Class BackendCommand
- java.lang.Object
-
- com.uc4.api.objects.BackendCommand
-
public class BackendCommand extends java.lang.ObjectThis 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 newBackendCommandobject.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetColumns()Returns the columns.java.lang.StringgetCommand()Returns the command.java.lang.StringgetOS()Returns the operating system of the command.java.lang.StringgetVersion()Returns the version.voidsetColumns(java.lang.String columns)Sets the columns.voidsetCommand(java.lang.String command)Sets the command.voidsetOS(java.lang.String os)Sets the operating system.voidsetVersion(java.lang.String version)Sets the version.
-
-
-
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.
-
-