Package com.redwood.scheduler.api.model
Interface OraAppsJobControlRule
-
- All Superinterfaces:
Detail
,Readable
,SchedulerEntity
,SchedulerEntityComp
public interface OraAppsJobControlRule extends Detail, Readable
Oracle Applications job synchronization settings.
-
-
Field Summary
Fields Modifier and Type Field Description static String
OBJECT_TYPE
String that will be returned fromSchedulerEntity.getObjectType()
for "OraAppsJobControlRule" objects.static String
SEC_RANK_ALL
This rank is made of the following privileges:static String
SEC_RANK_NONE
This rank has no privileges assigned to it.static QueryObjectType<OraAppsJobControlRule>
TYPE
Type that can be used inSchedulerSession.executeObjectQuery(QueryObjectType, String, Object...)
.-
Fields inherited from interface com.redwood.scheduler.api.model.Readable
COPYRIGHT_MESSAGE_E, ID_E
-
Fields inherited from interface com.redwood.scheduler.api.model.SchedulerEntity
ACTION_AUDIT, ACTION_EXPORT, ACTION_READ, BEHAVIOR_DEPRECATED, BEHAVIOR_NONE, BEHAVIOR_SYSTEM
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SynchronizeAction
getAction()
Get the value for Action.Queue
getDefaultQueue()
Get the DefaultQueue.String
getDescription()
Get the value for Description.String
getJobnameMask()
Get the value for JobnameMask.OraAppsSystem
getOraAppsSystem()
Get the OraAppsSystem.Long
getPriority()
Get the value for Priority.Long
getProcessingOrder()
Get the value for ProcessingOrder.String
getUsernameMask()
Get the value for UsernameMask.boolean
isEnabled()
Get the value for Enabled.boolean
isJobnameMaskCaseSensitive()
Get the value for JobnameMaskCaseSensitive.boolean
isRetrieveJoblog()
Get the value for RetrieveJoblog.boolean
isRetrieveOutput()
Get the value for RetrieveOutput.void
setAction(SynchronizeAction newAction)
Set the value for Action.void
setDefaultQueue(Queue newDefaultQueue)
Set the value for DefaultQueue.void
setDescription(String newDescription)
Set the value for Description.void
setEnabled(boolean newEnabled)
Set the value for Enabled.void
setJobnameMask(String newJobnameMask)
Set the value for JobnameMask.void
setJobnameMaskCaseSensitive(boolean newJobnameMaskCaseSensitive)
Set the value for JobnameMaskCaseSensitive.void
setPriority(Long newPriority)
Set the value for Priority.void
setProcessingOrder(Long newProcessingOrder)
Set the value for ProcessingOrder.void
setRetrieveJoblog(boolean newRetrieveJoblog)
Set the value for RetrieveJoblog.void
setRetrieveOutput(boolean newRetrieveOutput)
Set the value for RetrieveOutput.void
setUsernameMask(String newUsernameMask)
Set the value for UsernameMask.-
Methods inherited from interface com.redwood.scheduler.api.model.SchedulerEntity
canPerform, createSubjectObjectPrivilegeGrant, deleteObject, getAuditTrail, getAuditTrailSize, getBehavior, getEffectiveBehavior, getErrorNameEN, getErrorNameKey, getLLPVersion, getLOV, getLOVSupport, getObjectType, getParentSchedulerEntities, getRuntime, getSubjectObjectPrivilegeGrantBySubject, getSubjectObjectPrivilegeGrants, getUniqueId, getUrl, getUrl, isCreated, isDeletable, isDeleted, isModifiable, isModified, isSelectVersioned, processRelatedObjects, processRelatedObjects, processRelatedObjects, refreshObject, resetObject, resetObject, resetValuesToDefault, selectForRead
-
-
-
-
Field Detail
-
OBJECT_TYPE
static final String OBJECT_TYPE
String that will be returned fromSchedulerEntity.getObjectType()
for "OraAppsJobControlRule" objects.- See Also:
- Constant Field Values
-
TYPE
static final QueryObjectType<OraAppsJobControlRule> TYPE
Type that can be used inSchedulerSession.executeObjectQuery(QueryObjectType, String, Object...)
.
-
SEC_RANK_NONE
static final String SEC_RANK_NONE
This rank has no privileges assigned to it.- See Also:
- Constant Field Values
-
SEC_RANK_ALL
static final String SEC_RANK_ALL
This rank is made of the following privileges:- See Also:
- Constant Field Values
-
-
Method Detail
-
getAction
SynchronizeAction getAction()
Get the value for Action. (Action to take with Oracle Applications jobs that match this rule.) This value is mandatory, and therefore will not benull
if this object has been retrieved from the database.- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getDescription
String getDescription()
Get the value for Description. (The description of this step)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getJobnameMask
String getJobnameMask()
Get the value for JobnameMask. (Oracle Applications job name mask.) This value is mandatory, and therefore will not benull
if this object has been retrieved from the database.- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
isJobnameMaskCaseSensitive
boolean isJobnameMaskCaseSensitive()
Get the value for JobnameMaskCaseSensitive. (Is the JobnameMask case sensitive, or should it match regardless of the case?)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getProcessingOrder
Long getProcessingOrder()
Get the value for ProcessingOrder. (In which order are the JobControlRules applied?) This value is mandatory, and therefore will not benull
if this object has been retrieved from the database.- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getUsernameMask
String getUsernameMask()
Get the value for UsernameMask. (Oracle Applications username mask.) This value is mandatory, and therefore will not benull
if this object has been retrieved from the database.- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getPriority
Long getPriority()
Get the value for Priority. (Priority to assign the job in Crimson.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
isRetrieveJoblog
boolean isRetrieveJoblog()
Get the value for RetrieveJoblog. (Retrieve joblog of the Oracle Applications job.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
isRetrieveOutput
boolean isRetrieveOutput()
Get the value for RetrieveOutput. (Retrieve output lists of the Oracle Applications job.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
isEnabled
boolean isEnabled()
Get the value for Enabled. (Whether this rule is currently enabled or not.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setAction
void setAction(SynchronizeAction newAction)
Set the value for Action. (Action to take with Oracle Applications jobs that match this rule.) This value is mandatory.- Parameters:
newAction
- the new value for Action. If this isnull
, then the object cannot be persisted.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setDescription
void setDescription(String newDescription)
Set the value for Description. (The description of this step) This value is optional.- Parameters:
newDescription
- the new value for Description.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setJobnameMask
void setJobnameMask(String newJobnameMask)
Set the value for JobnameMask. (Oracle Applications job name mask.) This value is mandatory.- Parameters:
newJobnameMask
- the new value for JobnameMask. If this isnull
, then the object cannot be persisted.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setJobnameMaskCaseSensitive
void setJobnameMaskCaseSensitive(boolean newJobnameMaskCaseSensitive)
Set the value for JobnameMaskCaseSensitive. (Is the JobnameMask case sensitive, or should it match regardless of the case?)- Parameters:
newJobnameMaskCaseSensitive
- the new value for JobnameMaskCaseSensitive.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setProcessingOrder
void setProcessingOrder(Long newProcessingOrder)
Set the value for ProcessingOrder. (In which order are the JobControlRules applied?) This value is mandatory.- Parameters:
newProcessingOrder
- the new value for ProcessingOrder. If this isnull
, then the object cannot be persisted.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setUsernameMask
void setUsernameMask(String newUsernameMask)
Set the value for UsernameMask. (Oracle Applications username mask.) This value is mandatory.- Parameters:
newUsernameMask
- the new value for UsernameMask. If this isnull
, then the object cannot be persisted.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setPriority
void setPriority(Long newPriority)
Set the value for Priority. (Priority to assign the job in Crimson.) This value is optional.- Parameters:
newPriority
- the new value for Priority.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setRetrieveJoblog
void setRetrieveJoblog(boolean newRetrieveJoblog)
Set the value for RetrieveJoblog. (Retrieve joblog of the Oracle Applications job.)- Parameters:
newRetrieveJoblog
- the new value for RetrieveJoblog.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setRetrieveOutput
void setRetrieveOutput(boolean newRetrieveOutput)
Set the value for RetrieveOutput. (Retrieve output lists of the Oracle Applications job.)- Parameters:
newRetrieveOutput
- the new value for RetrieveOutput.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setEnabled
void setEnabled(boolean newEnabled)
Set the value for Enabled. (Whether this rule is currently enabled or not.)- Parameters:
newEnabled
- the new value for Enabled.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getOraAppsSystem
OraAppsSystem getOraAppsSystem()
Get the OraAppsSystem.- Returns:
- OraAppsSystem
- Throws:
ObjectDeletedException
- If this method is called when the object has been marked for deletion.ObjectNotAttachedToSessionException
- If this method is called when the object has been removed from it's session.
-
getDefaultQueue
Queue getDefaultQueue()
Get the DefaultQueue.- Returns:
- DefaultQueue
- Throws:
ObjectDeletedException
- If this method is called when the object has been marked for deletion.ObjectNotAttachedToSessionException
- If this method is called when the object has been removed from it's session.
-
setDefaultQueue
void setDefaultQueue(Queue newDefaultQueue)
Set the value for DefaultQueue. This value is optional.- Parameters:
newDefaultQueue
- is the object to set DefaultQueue to. Which queue that jobs should be placed on.
-
-