Package com.uc4.api.objects
Class AttributesUnix
java.lang.Object
com.uc4.api.objects.AttributesUnix
- All Implemented Interfaces:
IHostAttributes,JobReportAttributes,PythonJob
public class AttributesUnix
extends Object
implements IHostAttributes, PythonJob, JobReportAttributes
Host attributes for UNIX Jobs.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintReturns the number of fields in the host attributes.Returns the shell command.getShell()Returns the Unix Shell, under which the Job should run.Returns shell options.booleanReturns whether the Job report transfered to the database.booleanReturnstrueif the Job report will be stored only in case of Job interruption.booleanReturnstrueif the Job report is stored in the file system on the target system.booleanReturnstrueif the Job type is Command.booleanReturnstrueif the Job type is Shell Script.voidload(com.uc4.util.XMLDocument doc, Element hostAttr, ConnectionAttributes info) Loads the host attributes.name()Returns the host attributes name.ReturnsPythonJobAttributesor empty if the sub type of the OS Job is not Python.voidsetCommand(String command) Set a single shell command or sequence of shell commands.voidsetReportDatabase(boolean reportDatabase) Sets whether the Job report should be transfered to the database.voidsetReportErrorOnly(boolean reportErrorOnly) Sets whether the Job report should be stored only in case of Job interruption.voidsetReportFile(boolean reportFile) Sets whether the Job report should be stored in the file system on the target system.voidSets the Unix Shell, under which the Job should run.voidsetShellOptions(String shellOptions) Specification of shell options.voidThe command or command sequence, stored in the "Command" field, are given to the UNIX command line.voidA Job is generated, transferred to the target system and executed as a shell script.voidstore(com.uc4.util.XMLDocument doc, Element objectElement, ConnectionAttributes info) Writes the host attributes back to theXMLDocument.
-
Constructor Details
-
AttributesUnix
public AttributesUnix()
-
-
Method Details
-
fieldCount
public int fieldCount()Description copied from interface:IHostAttributesReturns the number of fields in the host attributes.- Specified by:
fieldCountin interfaceIHostAttributes- Returns:
- number of fields
-
load
Description copied from interface:IHostAttributesLoads the host attributes.- Specified by:
loadin interfaceIHostAttributes- Parameters:
doc- XML Document containing the JobhostAttr- Element which contains host attributesinfo- Session details
-
name
Description copied from interface:IHostAttributesReturns the host attributes name.- Specified by:
namein interfaceIHostAttributes- Returns:
- name
-
store
Description copied from interface:IHostAttributesWrites the host attributes back to theXMLDocument.- Specified by:
storein interfaceIHostAttributes- Parameters:
doc- DocumentobjectElement- ObjectElementinfo- Session details
-
getCommand
Returns the shell command.- Returns:
- Command
-
setCommand
Set a single shell command or sequence of shell commands. Is sent to the shell and executed there. Multiple commands separated by semicolons. A maximum of 255 charcters is allowed forcommand.- Parameters:
command- Command
-
getShellOptions
Returns shell options. The syntax of the parameters for calling the shell is dependent on the respective Unix Shell.- Returns:
- Shell options
-
setShellOptions
Specification of shell options. The syntax of the parameters for calling the shell is dependent on the respective Unix Shell. A maximum of 16 charcters is allowed forshellOptions.- Parameters:
shellOptions- Shell options
-
getShell
Returns the Unix Shell, under which the Job should run.- Returns:
- Unix Shell
-
setShell
Sets the Unix Shell, under which the Job should run. If no shell is selected, the Automation Engine uses the standard shell from the password file. A maximum of 8 characters is allowed forshell.- Parameters:
shell- Unix Shell
-
isTypeCommand
public boolean isTypeCommand()Returnstrueif the Job type is Command.- Returns:
- Command
-
setTypeCommand
public void setTypeCommand()The command or command sequence, stored in the "Command" field, are given to the UNIX command line. The shell defined in this tab is the one called. If no shell is defined, the standard shell is used. -
isTypeShellScript
public boolean isTypeShellScript()Returnstrueif the Job type is Shell Script.- Returns:
- Shell Script
-
setTypeShellScript
public void setTypeShellScript()A Job is generated, transferred to the target system and executed as a shell script. The JCL for the UNIX Job is stored in the "Script" tab. -
isReportDatabase
public boolean isReportDatabase()Description copied from interface:JobReportAttributesReturns whether the Job report transfered to the database.- Specified by:
isReportDatabasein interfaceJobReportAttributes- Returns:
trueif the Job report is transfered to the databasefalseotherwise
-
setReportDatabase
public void setReportDatabase(boolean reportDatabase) Description copied from interface:JobReportAttributesSets whether the Job report should be transfered to the database.- Specified by:
setReportDatabasein interfaceJobReportAttributes- Parameters:
reportDatabase-trueif the job report should be transfered to the databasefalseotherwise
-
isReportErrorOnly
public boolean isReportErrorOnly()Description copied from interface:JobReportAttributesReturnstrueif the Job report will be stored only in case of Job interruption. This function is only available when "Database" and/or "File" have been selected.- Specified by:
isReportErrorOnlyin interfaceJobReportAttributes- Returns:
trueif the job report is stored only in case of Job interruption
-
setReportErrorOnly
public void setReportErrorOnly(boolean reportErrorOnly) Description copied from interface:JobReportAttributesSets whether the Job report should be stored only in case of Job interruption. This function is only available when "Database" and/or "File" have been selected.- Specified by:
setReportErrorOnlyin interfaceJobReportAttributes- Parameters:
reportErrorOnly-trueif the job report should be stored only in case of Job interruption
-
isReportFile
public boolean isReportFile()Description copied from interface:JobReportAttributesReturnstrueif the Job report is stored in the file system on the target system.- Specified by:
isReportFilein interfaceJobReportAttributes- Returns:
trueif the job report is stored in the file system.
-
setReportFile
public void setReportFile(boolean reportFile) Description copied from interface:JobReportAttributesSets whether the Job report should be stored in the file system on the target system.- Specified by:
setReportFilein interfaceJobReportAttributes- Parameters:
reportFile-trueif the job report should be stored in the file system
-
pythonAttributes
Description copied from interface:PythonJobReturnsPythonJobAttributesor empty if the sub type of the OS Job is not Python.- Specified by:
pythonAttributesin interfacePythonJob- Returns:
- Python job attributes
-