Package com.uc4.api.objects
Class AttributesWin
- java.lang.Object
-
- com.uc4.api.objects.AttributesWin
-
- All Implemented Interfaces:
IHostAttributes
public class AttributesWin extends java.lang.Object implements IHostAttributes
Host attributes for Windows Jobs.
-
-
Constructor Summary
Constructors Constructor Description AttributesWin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
fieldCount()
Returns the number of fields in the host attributes.java.lang.String
getCommand()
Returns the program to be executed.java.lang.String
getWorkingDirectory()
Returns the working directory in which the Job should run.boolean
isGeneratedByScript()
Returnstrue
if the Job report is generated by script.boolean
isJobObjectDefault()
Returnstrue
if Job Object is set to default.boolean
isJobObjectNo()
Returnstrue
if Job Object is set to no.boolean
isJobObjectYes()
Returnstrue
if Job Object is set to yes.boolean
isLogOnAsBatch()
Returnstrue
if the Job is executed in batch mode.boolean
isReportDatabase()
Returns whether the Job report transfered to the database.boolean
isReportErrorOnly()
Returnstrue
if the Job report will be stored only in case of Job interruption.boolean
isReportFile()
Returnstrue
if the Job report is stored in the file system on the target system.boolean
isShowAtDesktop()
Returnstrue
if the Job is executed and visible to a logged-on user.boolean
isTypeBAT()
Returnstrue
if type BAT is selected.boolean
isTypeCOM()
Returnstrue
if type COM is selected.boolean
isTypeInterpreter()
Returnstrue
if type Interpreter is selected.boolean
isViewMaximized()
Returnstrue
if the view is set to maximized.boolean
isViewMinimized()
Returnstrue
if the view is set to minimized.boolean
isViewStandard()
Returnstrue
if the view is set to standard.void
load(com.uc4.util.XMLDocument doc, org.w3c.dom.Element hostAttr, ConnectionAttributes info)
Loads the host attributes.java.lang.String
name()
Returns the host attributes name.void
setCommand(java.lang.String command)
Sets the program to be executed.void
setGeneratedByScript(boolean isGeneratedByScript)
Sets whether the script should generate the Job report instead of STDOUT/STERR.void
setJobObjectDefault()
Whether or not the Windows Job Object is used depends on the configuration settings made in the INI file of the Agent.void
setJobObjectNo()
The Job does not use the Windows Job Object.void
setJobObjectYes()
The Job uses the Windows Job Object.void
setLogOnAsBatch(boolean logOnAsBatch)
If set the Job is executed in batch mode and is not visible to a logged-on user.void
setReportDatabase(boolean reportDatabase)
Sets whether the Job report should be transfered to the database.void
setReportErrorOnly(boolean reportErrorOnly)
Sets whether the Job report should be stored only in case of Job interruption.void
setReportFile(boolean reportFile)
Sets whether the Job report should be stored in the file system on the target system.void
setShowAtDesktop(boolean showAtDesktop)
If set the Job is executed and visible to a logged-on user.void
setTypeBAT()
The script statements and DATA lines stored in the script are executed as MS-DOS batch file.void
setTypeCOM()
The program stored in the field "Command" is executed.void
setTypeInterpreter()
The processing stored in the script is transferred to an Interpreter as a file.void
setViewMaximized()
Sets the display to maximized.void
setViewMinimized()
Sets the display to minimized.void
setViewStandard()
Set the display to normal view.void
setWorkingDirectory(java.lang.String workingDirectory)
Sets the working directory in which the Job should run.void
store(com.uc4.util.XMLDocument doc, org.w3c.dom.Element objectElement, ConnectionAttributes info)
Writes the host attributes back to theXMLDocument
.
-
-
-
Method Detail
-
fieldCount
public int fieldCount()
Description copied from interface:IHostAttributes
Returns the number of fields in the host attributes.- Specified by:
fieldCount
in interfaceIHostAttributes
- Returns:
- number of fields
-
load
public void load(com.uc4.util.XMLDocument doc, org.w3c.dom.Element hostAttr, ConnectionAttributes info)
Description copied from interface:IHostAttributes
Loads the host attributes.- Specified by:
load
in interfaceIHostAttributes
- Parameters:
doc
- XML Document containing the JobhostAttr
- Element which contains host attributesinfo
- Session details
-
name
public java.lang.String name()
Description copied from interface:IHostAttributes
Returns the host attributes name.- Specified by:
name
in interfaceIHostAttributes
- Returns:
- name
-
store
public void store(com.uc4.util.XMLDocument doc, org.w3c.dom.Element objectElement, ConnectionAttributes info)
Description copied from interface:IHostAttributes
Writes the host attributes back to theXMLDocument
.- Specified by:
store
in interfaceIHostAttributes
- Parameters:
doc
- DocumentobjectElement
- ObjectElementinfo
- Session details
-
isShowAtDesktop
public boolean isShowAtDesktop()
Returnstrue
if the Job is executed and visible to a logged-on user.- Returns:
- Show job on the desktop
-
setShowAtDesktop
public void setShowAtDesktop(boolean showAtDesktop)
If set the Job is executed and visible to a logged-on user. This way the Job may be displayed in Windows during its processing in an MS DOS window.- Parameters:
showAtDesktop
- Show job on the desktop
-
isLogOnAsBatch
public boolean isLogOnAsBatch()
Returnstrue
if the Job is executed in batch mode.- Returns:
- Logon as batch user
-
setLogOnAsBatch
public void setLogOnAsBatch(boolean logOnAsBatch)
If set the Job is executed in batch mode and is not visible to a logged-on user.- Parameters:
logOnAsBatch
- Logon as batch user
-
getCommand
public java.lang.String getCommand()
Returns the program to be executed.- Returns:
- Command
-
setCommand
public void setCommand(java.lang.String command)
Sets the program to be executed. The complete path may be specified if needed. Type "COM" is required. A maximum number of 255 characters is allowed forcommand
.- Parameters:
command
- Command
-
getWorkingDirectory
public java.lang.String getWorkingDirectory()
Returns the working directory in which the Job should run.- Returns:
- Working directory
-
setWorkingDirectory
public void setWorkingDirectory(java.lang.String workingDirectory)
Sets the working directory in which the Job should run. A maximum number of 255 characters is allowed forworkingDirectory
.- Parameters:
workingDirectory
- Working directory
-
isJobObjectNo
public boolean isJobObjectNo()
Returnstrue
if Job Object is set to no.- Returns:
- No
-
setJobObjectNo
public void setJobObjectNo()
The Job does not use the Windows Job Object.
-
isJobObjectYes
public boolean isJobObjectYes()
Returnstrue
if Job Object is set to yes.- Returns:
- Yes
-
setJobObjectYes
public void setJobObjectYes()
The Job uses the Windows Job Object.
-
isJobObjectDefault
public boolean isJobObjectDefault()
Returnstrue
if Job Object is set to default.- Returns:
- Default
-
setJobObjectDefault
public void setJobObjectDefault()
Whether or not the Windows Job Object is used depends on the configuration settings made in the INI file of the Agent.
-
isViewMaximized
public boolean isViewMaximized()
Returnstrue
if the view is set to maximized.- Returns:
- Maximized
-
setViewMaximized
public void setViewMaximized()
Sets the display to maximized. The display is enlarged to full screen.
-
isViewMinimized
public boolean isViewMinimized()
Returnstrue
if the view is set to minimized.- Returns:
- Minimized
-
setViewMinimized
public void setViewMinimized()
Sets the display to minimized.
-
isViewStandard
public boolean isViewStandard()
Returnstrue
if the view is set to standard.- Returns:
- Standard
-
setViewStandard
public void setViewStandard()
Set the display to normal view.
-
isTypeInterpreter
public boolean isTypeInterpreter()
Returnstrue
if type Interpreter is selected.- Returns:
- Interpreter
-
setTypeInterpreter
public void setTypeInterpreter()
The processing stored in the script is transferred to an Interpreter as a file. For this, the INI file in the [GLOBAL] section must contain the following entries:ECPEXE=Interpreter
andECPEXT=File Extension.
-
isTypeCOM
public boolean isTypeCOM()
Returnstrue
if type COM is selected.- Returns:
- Use Command field
-
setTypeCOM
public void setTypeCOM()
The program stored in the field "Command" is executed. The complete path and command line may be specified if needed.
-
isTypeBAT
public boolean isTypeBAT()
Returnstrue
if type BAT is selected.- Returns:
- Use Batch file
-
setTypeBAT
public void setTypeBAT()
The script statements and DATA lines stored in the script are executed as MS-DOS batch file.
-
isGeneratedByScript
public boolean isGeneratedByScript()
Returnstrue
if the Job report is generated by script.- Returns:
- Is generated by script
-
setGeneratedByScript
public void setGeneratedByScript(boolean isGeneratedByScript)
Sets whether the script should generate the Job report instead of STDOUT/STERR.- Parameters:
isGeneratedByScript
- Is generated by script
-
isReportDatabase
public boolean isReportDatabase()
Returns whether the Job report transfered to the database.- Returns:
true
if the Job report is transfered to the databasefalse
otherwise
-
setReportDatabase
public void setReportDatabase(boolean reportDatabase)
Sets whether the Job report should be transfered to the database.- Parameters:
reportDatabase
-true
if the job report should be transfered to the databasefalse
otherwise
-
isReportErrorOnly
public boolean isReportErrorOnly()
Returnstrue
if 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.- Returns:
true
if the job report is stored only in case of Job interruption
-
setReportErrorOnly
public void setReportErrorOnly(boolean reportErrorOnly)
Sets 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.- Parameters:
reportErrorOnly
-true
if the job report should be stored only in case of Job interruption
-
isReportFile
public boolean isReportFile()
Returnstrue
if the Job report is stored in the file system on the target system.- Returns:
true
if the job report is stored in the file system.
-
setReportFile
public void setReportFile(boolean reportFile)
Sets whether the Job report should be stored in the file system on the target system.- Parameters:
reportFile
-true
if the job report should be stored in the file system
-
-