Package com.uc4.api.objects
Class AttributesOA
- java.lang.Object
 - 
- com.uc4.api.objects.AttributesOA
 
 
- 
- All Implemented Interfaces:
 IHostAttributes
public class AttributesOA extends java.lang.Object implements IHostAttributes
Host attributes for Oracle Applications Jobs. 
- 
- 
Constructor Summary
Constructors Constructor Description AttributesOA() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intfieldCount()Returns the number of fields in the host attributes.java.lang.StringgetKey()Returns the responsibility key for the Oracle user.java.lang.StringgetShortName()Returns the short name of the application.booleanisReportDatabase()Returns whether the Job report transfered to the Automation Engine database.booleanisReportErrorOnly()Returnstrueif the Job report will be stored only in case of Job interruption.booleanisReportFile()Returnstrueif the Job report is stored in the file system on the target system.voidload(com.uc4.util.XMLDocument doc, org.w3c.dom.Element hostAttr, ConnectionAttributes info)Loads the host attributes.java.lang.Stringname()Returns the host attributes name.voidsetKey(java.lang.String key)Sets the responsibility key for the Oracle user.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.voidsetShortName(java.lang.String shortName)Sets the short name of the application.voidstore(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:IHostAttributesReturns the number of fields in the host attributes.- Specified by:
 fieldCountin 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:IHostAttributesLoads the host attributes.- Specified by:
 loadin 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:IHostAttributesReturns the host attributes name.- Specified by:
 namein interfaceIHostAttributes- Returns:
 - name
 
 
- 
store
public void store(com.uc4.util.XMLDocument doc, org.w3c.dom.Element objectElement, ConnectionAttributes info)Description copied from interface:IHostAttributesWrites the host attributes back to theXMLDocument.- Specified by:
 storein interfaceIHostAttributes- Parameters:
 doc- DocumentobjectElement- ObjectElementinfo- Session details
 
- 
getShortName
public java.lang.String getShortName()
Returns the short name of the application.- Returns:
 - short name
 
 
- 
setShortName
public void setShortName(java.lang.String shortName)
Sets the short name of the application.- Parameters:
 shortName- short name
 
- 
getKey
public java.lang.String getKey()
Returns the responsibility key for the Oracle user.- Returns:
 - responsibility key
 
 
- 
setKey
public void setKey(java.lang.String key)
Sets the responsibility key for the Oracle user.- Parameters:
 key- responsibility key
 
- 
isReportDatabase
public boolean isReportDatabase()
Returns whether the Job report transfered to the Automation Engine database.- Returns:
 trueif the Job report is transfered to the databasefalseotherwise
 
- 
setReportDatabase
public void setReportDatabase(boolean reportDatabase)
Sets whether the Job report should be transfered to the database.- Parameters:
 reportDatabase-trueif the job report should be transfered to the databasefalseotherwise
 
- 
isReportErrorOnly
public boolean isReportErrorOnly()
Returnstrueif 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:
 trueif 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-trueif the job report should be stored only in case of Job interruption
 
- 
isReportFile
public boolean isReportFile()
Returnstrueif the Job report is stored in the file system on the target system.- Returns:
 trueif 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-trueif the job report should be stored in the file system
 
 - 
 
 -