Interface Job
-
- All Superinterfaces:
BusinessKeyObject
,Detail
,HasOwner
,JobComp
,Readable
,SchedulerEntity
,SchedulerEntityComp
public interface Job extends JobComp, Detail, HasOwner, BusinessKeyObject, Readable
A job represents an instantiated job definition or job chain. To instantiate a job definition or job chain, it must be prepared. A preparedJobDefinition
is submitted once the session is persisted. The following code illustrates how to retrieve a system job definition and submit it.{ // Get the job definition and prepare it for submittal Job j = jcsSession.getJobDefinitionByName("System_Sleep").prepare(); // Persist session; any prepared job definitions will be submitted jcsSession.persist(); }
Jobs have scheduling parameters; the code above does not set the Queue scheduling parameter, for example. The queue scheduling parameter is mandatory and must be set, either on the job definition or on the job before it is submitted. In the case above, the queue was set on the job definition System_Sleep. Jobs also inherit job definition parameters. Mandatory parameters must always be set; if a mandatory parameter has no default value, the job definition cannot be submitted by events, for example. Likewise, when you attempt to submit a job definition without setting all mandatory parameters, and one or more mandatory job parameters have not been set, the submittal is vetoed by the system. In the above example, System_Sleep has a mandatory parameter (MilliSeconds), it has a default value and does not need to be explicitly set; its default value is 1000 ms.
The following code illustrates how to retrieve a job definition, set a parameter, and submit it onto a queue.
{ // Get the queue Queue q = jcsSession.getQueueByName("System"); // Get the job definition and prepare it for submittal Job j = jcsSession.getJobDefinitionByName("System_Sleep").prepare(); // Set the queue j.setQueue(q); // Set the parameter JobParameter jp = j.getJobParameterByName("MilliSeconds"); jp.setInValueNumber(new BigDecimal(1000)); // Persist session; any prepared job definitions will be submitted jcsSession.persist(); }
A job completes when the script code returns a return code; this usually occurs at the end of processing. The job gets a final state based on its return code. Jobs can also have an external completion strategy; this means that the job remains running until another job sets its status. Jobs with external completion strategies are logical RedwoodScript jobs used to represent asynchronous web services, you can also use them outside of web services. A job will automatically be deleted if the job is in a final state and any of the following conditions are met:
- The current system time is later than
getKeepExpiration()
, or. - The Jobs JobDefinition
JobDefinition.getKeepUnits()
==JobDefinitionKeepUnit.Jobs
, and there are more thanJobDefinition.getKeepAmount()
jobs for thisJobDefinition.getKeepType()
, and this is the oldest Job in that list.
Error Handling:
You should always check for 'null' when you retrieve objects from the repository because you never know, somebody might have changed the name of the job definition, for example. The following illustrates the use of 'null' checks, and how to specify the partition of an object:
{ // Get the partition, this is not necessary for the GLOBAL partition Partition part = jcsSession.getPartitionByName("GLOBAL"); // Get the queue in partition, objects in GLOBAL partition can also be retrieved without // specifying the partition: jcsSession.getQueueByName("System") if (part != null) { Queue q = jcsSession.getQueueByName(part,"System") // Get the job definition in partition and prepare it to be run now Job j = jcsSession.getJobDefinitionByName(part, "System_Info").prepare(); if (q != null && j != null) { //Set the queue j.setQueue(q); //Persist session; any prepared job definitions will be submitted jcsSession.persist(); } } }
-
-
Field Summary
Fields Modifier and Type Field Description static String
OBJECT_TYPE
String that will be returned fromSchedulerEntity.getObjectType()
for "Job" objects.static String
SEC_PRIV_CREATEJOBNOTES
This privilege can be granted at a group level.static String
SEC_PRIV_DELETE
This privilege can be granted at a group level.static String
SEC_PRIV_EDIT
This privilege can be granted at a group level.static String
SEC_PRIV_VIEW
This privilege can be granted at a group level.static String
SEC_RANK_ALL
This rank is made of the following privileges: view , createJobNotes , edit , deletestatic String
SEC_RANK_DELETE
This rank is made of the following privileges: view , createJobNotes , deletestatic String
SEC_RANK_EDIT
This rank is made of the following privileges: view , createJobNotes , editstatic String
SEC_RANK_JOBADMINISTRATOR
This rank is made of the following privileges: view , createJobNotes , edit , deletestatic String
SEC_RANK_NONE
This rank has no privileges assigned to it.static String
SEC_RANK_VIEW
This rank is made of the following privileges: viewstatic QueryObjectType<Job>
TYPE
Type that can be used inSchedulerSession.executeObjectQuery(QueryObjectType, String, Object...)
.-
Fields inherited from interface com.redwood.scheduler.api.model.BusinessKeyObject
COPYRIGHT_MESSAGE_BKO, ID_BKO
-
Fields inherited from interface com.redwood.scheduler.api.model.HasOwner
OWNER_SUBJECT_FIELD
-
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 Deprecated Methods Modifier and Type Method Description JobStatus
cancel()
Cancel a job that is not being executed yetLong
cancelRecurrence()
Cancel all jobs in a recurrence group where this is possible.RequiredPermission
checkCreateJobNotesPrivilege()
Check whether or not the createJobNotes action can be performed on this object.RequiredPermission
checkDeletePrivilege()
Check whether or not the delete action can be performed on this object.RequiredPermission
checkEditPrivilege()
Check whether or not the edit action can be performed on this object.RequiredPermission
checkViewPrivilege()
Check whether or not the view action can be performed on this object.ConstraintContext
createConstraintContext()
Create a ConstraintContext so that the constraints can be verified.JobDatum
createJobDatum(DatumDefinition newDatumDefinition)
Create a newJobDatum
linked to this object.JobDefinitionAlertSource
createJobDefinitionAlertSourceFor()
Creates a new Job Definition Alert Source.JobFile
createJobFile()
Create a newJobFile
linked to this object.JobJobLock
createJobJobLock(JobLock newJobLock)
Create a newJobJobLock
linked to this object.JobNote
createJobNote()
Create a newJobNote
linked to this object.JobParameter
createJobParameter(JobDefinitionParameter newJobDefinitionParameter)
Create a newJobParameter
linked to this object.JobRaiseEvent
createJobRaiseEvent()
Create a newJobRaiseEvent
linked to this object.JobRuntimeLimit
createJobRuntimeLimit()
Create a newJobRuntimeLimit
linked to this object.JobWaitEvent
createJobWaitEvent()
Create a newJobWaitEvent
linked to this object.JobFile
createLinkedJobFile(JobFile jobFileToLink, String jobFileName, Long jobFileOrder)
Creates a JobFile that will be linked to another JobFile.OperatorMessage
createOperatorMessage(String text, String replyExpression)
Create an operator message for this job.Long
deleteRecurrence()
Delete all jobs in a recurrence group where this is possible.JobStatus
disable()
Disable a job.JobStatus
enable()
Enable a job that is currently disabled.void
evaluateJobChainCallInExpressionParameterMappings()
If this is a jobchain call evaluates its JobChainCallInExpressionParameterMappings.String
explainJobStatus()
Explain why the Job is in its current status.String
explainJobStatusHTML()
Explain why the Job is in its current status, in HTML.String[]
getAllowedStartAtValues()
Get the value for AllowedStartAtValue.RWIterable<Job>
getChildJobs()
Get anRWIterable
over a collection ofChildJobs
, the collection will be ordered by ChildOrder.Long
getChildOrder()
Get the value for ChildOrder.CompletionStrategyType
getCompletionStrategy()
Get the value for CompletionStrategy.DateTimeZone
getCreationTime()
Get the value for CreationTime.String
getDescription()
Get the value for Description.JobEstimates
getEstimates()
Get the value for Estimates.List<Job>
getExpandedJobList()
Returns a list of this job and its children that are to be shown in an expanded state; in general this is during the execution phase of a job.ProcessServer
getForcedProcessServer()
Get the ForcedProcessServer.JobChainCall
getJobChainCall()
Get the JobChainCall.JobChainStep
getJobChainStep()
Get the JobChainStep.RWIterable<JobDatum>
getJobData()
Get anRWIterable
over an ordered collection ofJobData
.JobDatum
getJobDatumByDatumDefinition(DatumDefinition datumDefinition)
Get the JobDatum by JobDatum.JobDefinition
getJobDefinition()
Get the JobDefinition.JobFile
getJobFileByFileOrder(Long fileOrder)
Get the JobFile by JobFileOrder.JobFile
getJobFileByName(String name)
Get the JobFile by JobName.RWIterable<JobFile>
getJobFiles()
Get anRWIterable
over a collection ofJobFiles
, the collection will be ordered by FileOrder.JobGroup
getJobGroup()
Get the JobGroup.DateTimeZone
getJobGroupEndDate()
Get the value for JobGroupEndDate.Long
getJobGroupJobCount()
Get the value for JobGroupJobCount.Long
getJobGroupMaxJobs()
Get the value for JobGroupMaxJobs.Long
getJobGroupPresubmitCount()
Get the value for JobGroupPresubmitCount.JobGroupStatus
getJobGroupStatus()
Get the value for JobGroupStatus.Long
getJobId()
Get the value for JobId.RWIterable<JobJobLock>
getJobJobLocks()
Get anRWIterable
over an ordered collection ofJobJobLocks
.RWIterable<JobNote>
getJobNotes()
Get anRWIterable
over an ordered collection ofJobNotes
.JobParameter
getJobParameterByName(String parameterName)
Return the JobParameter for the given name.RWIterable<JobParameter>
getJobParameters()
Get anRWIterable
over a collection ofJobParameters
, the collection will be ordered by DisplayOrder.JobRaiseEvent
getJobRaiseEventByStatusToRaiseOnEventDefinition(JobStatus statusToRaiseOn, EventDefinition eventDefinition)
Get the JobRaiseEvent by JobRaiseEvents.RWIterable<JobRaiseEvent>
getJobRaiseEvents()
Get anRWIterable
over an ordered collection ofJobRaiseEvents
.JobRuntimeLimit
getJobRuntimeLimitByName(String name)
Get the JobRuntimeLimit by JobName.RWIterable<JobRuntimeLimit>
getJobRuntimeLimits()
Get anRWIterable
over an ordered collection ofJobRuntimeLimits
.TimeZone
getJobTimeZone()
Get the JobTimeZone.JobWaitEvent
getJobWaitEventByEventDefinition(EventDefinition eventDefinition)
Get the JobWaitEvent by JobWaitEvents.RWIterable<JobWaitEvent>
getJobWaitEvents()
Get anRWIterable
over an ordered collection ofJobWaitEvents
.DateTimeZone
getKeepExpiration()
Get the value for KeepExpiration.KillSignalType
getKillSignal()
Get the value for KillSignal.DateTimeZone
getLastModificationTime()
Get the value for LastModificationTime.Subject
getLastModifierSubject()
Get the LastModifierSubject.DateTimeZone
getLastStatusChangeTime()
Get the value for LastStatusChangeTime.JobMaintenance
getMaintenance()
Get the value for Maintenance.Long
getMaximumConcurrentExecutionCount()
Returns the number that allows for maximum concurrent processing if applied to the license key for the global execution limit.Long
getMinimumOpenDuration()
Get the value for MinimumOpenDuration.String
getMinimumOpenDurationExpression()
Get the value for MinimumOpenDurationExpression.Job
getNextStepJob()
Get the next step job.
This method can be called from a job that corresponds to a step or a call.DateTimeZone
getNextSubmitBaseTime()
Get the value for NextSubmitBaseTime.Long
getNumChildJobs()
Get the value for NumChildJobs.Long
getNumJobFiles()
Get the value for NumJobFiles.Long
getNumJobLocks()
Get the value for NumJobLocks.Long
getNumJobMetaData()
Get the value for NumJobMetaData.Long
getNumJobNotes()
Get the value for NumJobNotes.Long
getNumJobParameters()
Get the value for NumJobParameters.Long
getNumJobRaiseEvents()
Get the value for NumJobRaiseEvents.Long
getNumJobRuntimeLimits()
Get the value for NumJobRuntimeLimits.Long
getNumJobWaitEvents()
Get the value for NumJobWaitEvents.Long
getNumRuntimeParameters()
Get the number of runtime parameters this job has.ObjectTag
getObjectTagFromJobDefinition(String objectTagDefinitionBusinessKey)
Returns the ObjectTag from the JobDefinition for given ObjectTagDefinition BusinessKey or name if present, null otherwise (this is a convenience method, you can get it from JobDefinition directly as well).ObjectTag
getObjectTagFromQueue(String objectTagDefinitionName)
Returns the ObjectTag from the Queue for given ObjectTagDefinition BusinessKey or name if present, null otherwise (this is a convenience method, you can get it from Queue directly as well).RWIterable<ObjectTag>
getObjectTagsFromJobDefinition()
Returns an RWIterable with ObjectTag instances from the JobDefinition of the Job (this is a convenience method, you can get it from JobDefinition directly as well).RWIterable<ObjectTag>
getObjectTagsFromQueue()
Returns an RWIterable with ObjectTag instances from the Queue (this is a convenience method, you can get it from Queue directly as well).RWIterable<OperatorMessage>
getOperatorMessages()
Get the value for OperatorMessage.Subject
getOwnerSubject()
Get the OwnerSubject.Job
getParentJob()
Get the ParentJob.ProcessServer
getPreviousProcessServer()
Deprecated.Job
getPreviousStepJob()
Get the previous step job.
This method can be called from a job that corresponds to a step or a call.Long
getPriority()
Get the value for Priority.ProcessServer
getProcessServer()
Get the ProcessServer.ProcessServer
getProxyProcessServer()
Get the ProxyProcessServer.PublishApproval
getPublishApproval()
Get the PublishApproval.Queue
getQueue()
Get the Queue.RecurrenceInfo
getRecurrenceInfo()
Returns a RecurrenceInfo object that gives access to the details of the recurrence that is coded in the recurrence pattern string.RWIterable<Job>
getRecurrenceJobs()
Return an iterator with all jobs in the recurrence for this job, including this.String
getRecurrencePattern()
Get the value for RecurrencePattern.Job
getRelativeJob(String jobName)
Get the job by name of the job in the current job chain.DateTimeZone
getRemoteCreationTime()
Get the value for RemoteCreationTime.String
getRemoteEvent()
Get the value for RemoteEvent.String
getRemoteId()
Get the value for RemoteId.String
getRemoteOSUser()
Get the value for RemoteOSUser.DateTimeZone
getRemoteRunEnd()
Get the value for RemoteRunEnd.DateTimeZone
getRemoteRunStart()
Get the value for RemoteRunStart.String
getRemoteStatus()
Get the value for RemoteStatus.String
getRemoteSystem()
Get the value for RemoteSystem.DateTimeZone
getRequestedStartTime()
Get the value for RequestedStartTime.StartTimeType
getRequestedStartTimeType()
Get the value for RequestedStartTimeType.Long
getRestartCount()
Get the value for RestartCount.Long
getRestartJobId()
Get the value for RestartJobId.Long
getReturnCode()
Get the value for ReturnCode.DateTimeZone
getRunEnd()
Get the value for RunEnd.DateTimeZone
getRunStart()
Get the value for RunStart.Long
getRunTime()
Get the value for RunTime.DateTimeZone
getRuntimeExpiration()
Get the value for RuntimeExpiration.SAPNWCallbackVariant
getSAPNWCallbackVariant()
Get the SAPNWCallbackVariant.DateTimeZone
getScheduledStartTime()
Get the value for ScheduledStartTime.String
getSearchDescription()
Get the value for SearchDescription.String
getStartAtValue()
Get the value for StartAtValue.JobStatus
getStatus()
Get the value for Status.JobStatusForJobGroup
getStatusForJobGroup()
Get the value for StatusForJobGroup.Long
getStepIteration()
Get the value for StepIteration.SubmitFrame
getSubmitFrame()
Get the SubmitFrame.TimeWindow
getTimeWindow()
Get the TimeWindow.TimeZone
getTimeWindowTimeZone()
Get the TimeWindowTimeZone.UserMessage
getUserMessage()
Get the UserMessage.boolean
hasRuntimeParameters()
Get the value for HasRuntimeParameters.JobStatus
hold()
Hold a job, put it in the held state.Long
holdRecurrence()
Hold all jobs in a recurrence group where this is possible.boolean
isActualJobChain()
Get the value for ActualJobChain.boolean
isActualJobChainCall()
Get the value for ActualJobChainCall.boolean
isActualJobChainStep()
Get the value for ActualJobChainStep.boolean
isAllowedProcessServer(ProcessServer processServer)
Returns true if the job can run on this process server.boolean
isAllowedQueue(Queue queue)
Returns true if the job can run on this queue.boolean
isForcedToRunNow()
Get the value for ForcedToRunNow.boolean
isHoldOnSubmit()
Get the value for HoldOnSubmit.boolean
isInRecurrenceGroup()
Get the value for InRecurrenceGroup.boolean
isParametersSetByUser()
Get the value for ParametersSetByUser.JobStatus
kill()
Kill a job that is currently executingvoid
markForArchive(String server, String mark, DateTimeZone deletionDate)
Mark a job for archiving (requires archiving module).void
registerAsTemporaryObject(NamedRootObject object)
Register given NamedRootObject with this Process to become a temporary object.JobStatus
release()
Release a job that is in the held state.Long
releaseRecurrence()
Release all jobs in a job group where this is possible.void
removeFromRecurrenceGroup()
Remove this job from the recurrence group that it belongs to.Job
restart()
Restart the job by submitting a new job with the same parameters.Job
restartFromError()
Restart the job, skipping the completed child jobs, to continue with the first error job.void
restartFromStep(RestartStepOptions restartStepOptions)
This will trigger the Restart Behaviour functionality, allowing an operator to restart a step in a running chain.Job
restartRecurrence()
Restart the job group by submitting a new job group with the same parameters.Job
resubmit()
Prepare a new job with the same parameters, but clear the recurrence attributes.Job
resubmitRecurrence()
Prepare a new job with the same parameters, including all recurrence attributes.JobStatus
runNow()
Start the process immediately, ignoring most scheduling constraints.void
setChildOrder(Long newChildOrder)
Set the value for ChildOrder.void
setDescription(String newDescription)
Set the value for Description.void
setForcedProcessServer(ProcessServer newForcedProcessServer)
Set the value for ForcedProcessServer.void
setHoldOnSubmit(boolean newHoldOnSubmit)
Set the value for HoldOnSubmit.void
setJobGroup(JobGroup newJobGroup)
Set the value for JobGroup.void
setJobGroupEndDate(DateTimeZone newJobGroupEndDate)
Set the value for JobGroupEndDate.void
setJobGroupMaxJobs(Long newJobGroupMaxJobs)
Set the value for JobGroupMaxJobs.void
setJobGroupPresubmitCount(Long newJobGroupPresubmitCount)
Set the value for JobGroupPresubmitCount.void
setJobTimeZone(TimeZone newJobTimeZone)
Set the value for JobTimeZone.void
setKeepExpiration(DateTimeZone newKeepExpiration)
Set the value for KeepExpiration.void
setMinimumOpenDuration(Long newMinimumOpenDuration)
Set the value for MinimumOpenDuration.void
setMinimumOpenDurationExpression(String newMinimumOpenDurationExpression)
Set the value for MinimumOpenDurationExpression.void
setNextSubmitBaseTime(DateTimeZone newNextSubmitBaseTime)
Set the value for NextSubmitBaseTime.void
setParentJob(Job newParentJob)
Set the value for ParentJob.void
setPriority(Long newPriority)
Set the value for Priority.void
setQueue(Queue newQueue)
Set the value for Queue.void
setRecurrencePattern(String newRecurrencePattern)
Set the value for RecurrencePattern.void
setRequestedStartTime(DateTimeZone newRequestedStartTime)
Set the value for RequestedStartTime.void
setRequestedStartTimeToParent()
Set the value for RequestedStart to be the same as the parent Job.void
setRestartCount(Long newRestartCount)
Set the value for RestartCount.void
setRestartJobId(Long newRestartJobId)
Set the value for RestartJobId.void
setReturnCode(Long newReturnCode)
Set the value for ReturnCode.void
setSAPNWCallbackVariant(SAPNWCallbackVariant newSAPNWCallbackVariant)
Set the value for SAPNWCallbackVariant.void
setStartAtValue(String newStartAtValue)
Set the value for StartAtValue.void
setStatusExternal(JobStatus jobStatus)
Set the status of a job that has CompletionStrategy of CompletionStrategyType.External.void
setStatusForJobGroup(JobStatusForJobGroup newStatusForJobGroup)
Set the value for StatusForJobGroup.void
setSubmitFrame(SubmitFrame newSubmitFrame)
Set the value for SubmitFrame.void
setTimeWindow(TimeWindow newTimeWindow)
Set the value for TimeWindow.void
setTimeWindowTimeZone(TimeZone newTimeWindowTimeZone)
Set the value for TimeWindowTimeZone.void
setUpdateAction(UpdateFutureJobActionType actionType)
Set the action to be executed by the UpdateFutureJobsActionWorker and start it.-
Methods inherited from interface com.redwood.scheduler.api.model.BusinessKeyObject
getBusinessKey
-
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 "Job" objects.- See Also:
- Constant Field Values
-
TYPE
static final QueryObjectType<Job> TYPE
Type that can be used inSchedulerSession.executeObjectQuery(QueryObjectType, String, Object...)
.
-
SEC_PRIV_VIEW
static final String SEC_PRIV_VIEW
This privilege can be granted at a group level. This privilege can be granted at an instance level.- See Also:
- Constant Field Values
-
SEC_PRIV_CREATEJOBNOTES
static final String SEC_PRIV_CREATEJOBNOTES
This privilege can be granted at a group level. This privilege can be granted at an instance level.- See Also:
- Constant Field Values
-
SEC_PRIV_EDIT
static final String SEC_PRIV_EDIT
This privilege can be granted at a group level. This privilege can be granted at an instance level.- See Also:
- Constant Field Values
-
SEC_PRIV_DELETE
static final String SEC_PRIV_DELETE
This privilege can be granted at a group level. This privilege can be granted at an instance level.- See Also:
- Constant Field Values
-
SEC_RANK_NONE
static final String SEC_RANK_NONE
This rank has no privileges assigned to it.- See Also:
- Constant Field Values
-
SEC_RANK_VIEW
static final String SEC_RANK_VIEW
This rank is made of the following privileges: view- See Also:
- Constant Field Values
-
SEC_RANK_EDIT
static final String SEC_RANK_EDIT
This rank is made of the following privileges: view , createJobNotes , edit- See Also:
- Constant Field Values
-
SEC_RANK_DELETE
static final String SEC_RANK_DELETE
This rank is made of the following privileges: view , createJobNotes , delete- See Also:
- Constant Field Values
-
SEC_RANK_JOBADMINISTRATOR
static final String SEC_RANK_JOBADMINISTRATOR
This rank is made of the following privileges: view , createJobNotes , edit , delete- See Also:
- Constant Field Values
-
SEC_RANK_ALL
static final String SEC_RANK_ALL
This rank is made of the following privileges: view , createJobNotes , edit , delete- See Also:
- Constant Field Values
-
-
Method Detail
-
isActualJobChain
boolean isActualJobChain()
Get the value for ActualJobChain. ( Indicates whether this job corresponds directly to a job chain parent (as opposed to a step or call within). )- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
isActualJobChainCall
boolean isActualJobChainCall()
Get the value for ActualJobChainCall. ( Indicates whether this job corresponds directly to a job chain call (as opposed to a step). This will return true for a nested job chain parent job, as well. )- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
isActualJobChainStep
boolean isActualJobChainStep()
Get the value for ActualJobChainStep. ( Indicates whether this job corresponds directly to a job chain step (as opposed to a step or call within). )- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getAllowedStartAtValues
String[] getAllowedStartAtValues()
Get the value for AllowedStartAtValue. ( Query the list of allowed values that the Start At attribute can be set to. The Start At attribute is used in job chains to start at a specific step. If no value is present (there is no list), any Start At value is allowed. If an empty list is returned, no Start At value is allowed. )- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getChildOrder
Long getChildOrder()
Get the value for ChildOrder. (The index number of this child with respect to its siblings and its parent) 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.
-
getCreationTime
DateTimeZone getCreationTime()
Get the value for CreationTime. (The creation date of this Job. This is the time that persist() was called on the session that created this Job.) 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 name of the job. During prepare the JobDefinition Description is copied to this field.) 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.
-
getSearchDescription
String getSearchDescription()
Get the value for SearchDescription. (The description converted to upper-case, used for searching.) 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.
-
getStatusForJobGroup
JobStatusForJobGroup getStatusForJobGroup()
Get the value for StatusForJobGroup. (Marks actions that make the job independent from the job group. The restart statuses are filled for all jobs.) 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.
-
getEstimates
JobEstimates getEstimates()
Get the value for Estimates. (Estimates for this job.) 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.
-
isInRecurrenceGroup
boolean isInRecurrenceGroup()
Get the value for InRecurrenceGroup. (Whether or not this job is part of a recurrence group.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getJobGroupEndDate
DateTimeZone getJobGroupEndDate()
Get the value for JobGroupEndDate. (The job group ends at the defined date and time. )- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getJobGroupJobCount
Long getJobGroupJobCount()
Get the value for JobGroupJobCount. (The current number of jobs that have been submitted for the job group. )- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getJobGroupMaxJobs
Long getJobGroupMaxJobs()
Get the value for JobGroupMaxJobs. (The job group ends if the defined maximum of jobs is reached. )- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getJobGroupPresubmitCount
Long getJobGroupPresubmitCount()
Get the value for JobGroupPresubmitCount. (The number of jobs that is scheduled in advance for the job group.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getJobGroupStatus
JobGroupStatus getJobGroupStatus()
Get the value for JobGroupStatus. (The current status for the job group.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getJobId
Long getJobId()
Get the value for JobId. (The Job ID for this Job. This is unique for every Job.) 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.
-
getKeepExpiration
DateTimeZone getKeepExpiration()
Get the value for KeepExpiration. (Holds the time after which the keep clause processor deletes this Job. This takes precedence over the keep specified on the job definition.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getLastModificationTime
DateTimeZone getLastModificationTime()
Get the value for LastModificationTime. (The last modification date/time of the job.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getMaintenance
JobMaintenance getMaintenance()
Get the value for Maintenance. (The maintenance level for the Job.) 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.
-
getMinimumOpenDuration
Long getMinimumOpenDuration()
Get the value for MinimumOpenDuration. (The minimum number of milliseconds that should be available in the TimeWindow of the Job, the Job's Queue or the intersection of both, before this job will be submitted.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getMinimumOpenDurationExpression
String getMinimumOpenDurationExpression()
Get the value for MinimumOpenDurationExpression. (Expression for the minimum number of milliseconds that should be available in the TimeWindow of the Job, the Job's Queue or the intersection of both, before this job will be submitted. The value can be a REL expression or a number.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getNextSubmitBaseTime
DateTimeZone getNextSubmitBaseTime()
Get the value for NextSubmitBaseTime. (The time that will be used as a start time for the calculation of the next RequestedStartTime for a Job with a SubmitFrame or a RecurrencePattern.) 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.
-
getNumChildJobs
Long getNumChildJobs()
Get the value for NumChildJobs. (The number of child Jobs this Job has. This is a performance optimization field.) 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.
-
getNumJobFiles
Long getNumJobFiles()
Get the value for NumJobFiles. (The number of JobFiles this Job have. This is a performance optimization field.) 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.
-
getNumJobLocks
Long getNumJobLocks()
Get the value for NumJobLocks. (The number of JobLocks this Job requires. This is a performance optimization field.) 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.
-
getNumJobMetaData
Long getNumJobMetaData()
Get the value for NumJobMetaData. (The number of JobMetaData items this Job has. This is a performance optimization field.) 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.
-
getNumJobNotes
Long getNumJobNotes()
Get the value for NumJobNotes. (The number of JobNotes this Job has. This is a performance optimization field.) 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.
-
getNumJobRaiseEvents
Long getNumJobRaiseEvents()
Get the value for NumJobRaiseEvents. (The number of JobRaiseEvents this Job has. This is a performance optimization field.) 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.
-
getNumJobWaitEvents
Long getNumJobWaitEvents()
Get the value for NumJobWaitEvents. (The number of JobWaitEvents this Job has. This is a performance optimization field.) 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.
-
getNumJobRuntimeLimits
Long getNumJobRuntimeLimits()
Get the value for NumJobRuntimeLimits. (The number of JobRuntimeLimits this Job has. This is a performance optimization field.) 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.
-
getNumJobParameters
Long getNumJobParameters()
Get the value for NumJobParameters. (The number of Parameters this Job has. This is a performance optimization field.) 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.
-
hasRuntimeParameters
boolean hasRuntimeParameters()
Get the value for HasRuntimeParameters. (Does this Job have Runtime Parameters. This is a performance optimization field.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getOperatorMessages
RWIterable<OperatorMessage> getOperatorMessages()
Get the value for OperatorMessage. (Operator messages raised by this job.)- Specified by:
getOperatorMessages
in interfaceJobComp
- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
isParametersSetByUser
boolean isParametersSetByUser()
Get the value for ParametersSetByUser. (Used by job propagation to keep track if the parameters of a job were set by the user.)- 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. (The priority of a job. Priority 1-100, higher has precedence; This field only has relevance if the resources or queue size is limited. The post-set listener propagates the priority to other jobs in the same recurrence.) 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.
-
getRecurrencePattern
String getRecurrencePattern()
Get the value for RecurrencePattern. (The recurrence pattern for this job.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getRemoteCreationTime
DateTimeZone getRemoteCreationTime()
Get the value for RemoteCreationTime. (The date and time when the job was created in the remote system)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getRemoteEvent
String getRemoteEvent()
Get the value for RemoteEvent. (Event the job in the remote system is waiting for)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getRemoteId
String getRemoteId()
Get the value for RemoteId. (Unique identification of the job in the remote system.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getRemoteOSUser
String getRemoteOSUser()
Get the value for RemoteOSUser. (The actual user the script is run as in the external system.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getRemoteRunEnd
DateTimeZone getRemoteRunEnd()
Get the value for RemoteRunEnd. (The date and time when the job finished in the remote system)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getRemoteRunStart
DateTimeZone getRemoteRunStart()
Get the value for RemoteRunStart. (The date and time when the job started executing in the remote system)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getRemoteStatus
String getRemoteStatus()
Get the value for RemoteStatus. (Status of the job in the remote system)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getRemoteSystem
String getRemoteSystem()
Get the value for RemoteSystem. (Foreign subsystem that this job is actually executed in)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getRequestedStartTime
DateTimeZone getRequestedStartTime()
Get the value for RequestedStartTime. (This is the time that the User has requested the Job to start.) 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.
-
getRequestedStartTimeType
StartTimeType getRequestedStartTimeType()
Get the value for RequestedStartTimeType. (Has the RequestedStartTime been explicitly set by the user, or has it been inherited from the Job's parent.) 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.
-
getRestartCount
Long getRestartCount()
Get the value for RestartCount. (Number of restarts left for this job)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getRestartJobId
Long getRestartJobId()
Get the value for RestartJobId. (The job id of the job that restarted this job.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getReturnCode
Long getReturnCode()
Get the value for ReturnCode. (The return code of the processed command)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getRunEnd
DateTimeZone getRunEnd()
Get the value for RunEnd. (The date and time when the job finished.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getRunStart
DateTimeZone getRunStart()
Get the value for RunStart. (The date and time the job started executing.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getRunTime
Long getRunTime()
Get the value for RunTime. (The time in milliseconds that it took this job to finish.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getRuntimeExpiration
DateTimeZone getRuntimeExpiration()
Get the value for RuntimeExpiration. (The date on which action will be taken if the job has not completed)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getScheduledStartTime
DateTimeZone getScheduledStartTime()
Get the value for ScheduledStartTime. (The scheduled start date and time of the job. This is calculated by the Dispatcher, and is dependent on any TimeWindows associated with the Job, or the Jobs Queue, and the RequestedStartTime set by the user. This value is also set on a best effort basis when submit() is called for this Job.) 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.
-
getStartAtValue
String getStartAtValue()
Get the value for StartAtValue. (At which job chain step the job should start running from.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getStatus
JobStatus getStatus()
Get the value for Status. (The current status of the job) 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.
-
getLastStatusChangeTime
DateTimeZone getLastStatusChangeTime()
Get the value for LastStatusChangeTime. (The date and time of the last status change of the job. This is set automatically if the status changes and can be used to check whether a job is in a certain status longer than some time.) 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.
-
isHoldOnSubmit
boolean isHoldOnSubmit()
Get the value for HoldOnSubmit. (Should any submitted Job be held by default.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getStepIteration
Long getStepIteration()
Get the value for StepIteration. (For job chain steps and their calls only: Iteration number.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getKillSignal
KillSignalType getKillSignal()
Get the value for KillSignal. (The kill signal used to kill the job.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
getCompletionStrategy
CompletionStrategyType getCompletionStrategy()
Get the value for CompletionStrategy. (The kill signal used to kill the job.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
isForcedToRunNow
boolean isForcedToRunNow()
Get the value for ForcedToRunNow. (Whether this process is forced to run immediately, ignoring scheduling constraints.)- Returns:
- the field
- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setChildOrder
void setChildOrder(Long newChildOrder)
Set the value for ChildOrder. (The index number of this child with respect to its siblings and its parent) This value is mandatory.- Parameters:
newChildOrder
- the new value for ChildOrder. 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 name of the job. During prepare the JobDefinition Description is copied to this field.) This value is mandatory.- Parameters:
newDescription
- the new value for Description. 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.
-
setStatusForJobGroup
void setStatusForJobGroup(JobStatusForJobGroup newStatusForJobGroup)
Set the value for StatusForJobGroup. (Marks actions that make the job independent from the job group. The restart statuses are filled for all jobs.) This value is mandatory.- Parameters:
newStatusForJobGroup
- the new value for StatusForJobGroup. 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.
-
setJobGroupEndDate
void setJobGroupEndDate(DateTimeZone newJobGroupEndDate)
Set the value for JobGroupEndDate. (The job group ends at the defined date and time. ) This value is optional.- Parameters:
newJobGroupEndDate
- the new value for JobGroupEndDate.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setJobGroupMaxJobs
void setJobGroupMaxJobs(Long newJobGroupMaxJobs)
Set the value for JobGroupMaxJobs. (The job group ends if the defined maximum of jobs is reached. ) This value is optional.- Parameters:
newJobGroupMaxJobs
- the new value for JobGroupMaxJobs.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setJobGroupPresubmitCount
void setJobGroupPresubmitCount(Long newJobGroupPresubmitCount)
Set the value for JobGroupPresubmitCount. (The number of jobs that is scheduled in advance for the job group.) This value is optional.- Parameters:
newJobGroupPresubmitCount
- the new value for JobGroupPresubmitCount.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setKeepExpiration
void setKeepExpiration(DateTimeZone newKeepExpiration)
Set the value for KeepExpiration. (Holds the time after which the keep clause processor deletes this Job. This takes precedence over the keep specified on the job definition.) This value is optional.- Parameters:
newKeepExpiration
- the new value for KeepExpiration.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setMinimumOpenDuration
void setMinimumOpenDuration(Long newMinimumOpenDuration)
Set the value for MinimumOpenDuration. (The minimum number of milliseconds that should be available in the TimeWindow of the Job, the Job's Queue or the intersection of both, before this job will be submitted.) This value is optional.- Parameters:
newMinimumOpenDuration
- the new value for MinimumOpenDuration.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setMinimumOpenDurationExpression
void setMinimumOpenDurationExpression(String newMinimumOpenDurationExpression)
Set the value for MinimumOpenDurationExpression. (Expression for the minimum number of milliseconds that should be available in the TimeWindow of the Job, the Job's Queue or the intersection of both, before this job will be submitted. The value can be a REL expression or a number.) This value is optional.- Parameters:
newMinimumOpenDurationExpression
- the new value for MinimumOpenDurationExpression.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setNextSubmitBaseTime
void setNextSubmitBaseTime(DateTimeZone newNextSubmitBaseTime)
Set the value for NextSubmitBaseTime. (The time that will be used as a start time for the calculation of the next RequestedStartTime for a Job with a SubmitFrame or a RecurrencePattern.) This value is mandatory.- Parameters:
newNextSubmitBaseTime
- the new value for NextSubmitBaseTime. 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. (The priority of a job. Priority 1-100, higher has precedence; This field only has relevance if the resources or queue size is limited. The post-set listener propagates the priority to other jobs in the same recurrence.) This value is mandatory.- Parameters:
newPriority
- the new value for Priority. 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.
-
setRecurrencePattern
void setRecurrencePattern(String newRecurrencePattern)
Set the value for RecurrencePattern. (The recurrence pattern for this job.) This value is optional.- Parameters:
newRecurrencePattern
- the new value for RecurrencePattern.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setRequestedStartTime
void setRequestedStartTime(DateTimeZone newRequestedStartTime)
Set the value for RequestedStartTime. (This is the time that the User has requested the Job to start.) This value is mandatory.- Parameters:
newRequestedStartTime
- the new value for RequestedStartTime. 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.
-
setRestartCount
void setRestartCount(Long newRestartCount)
Set the value for RestartCount. (Number of restarts left for this job) This value is optional.- Parameters:
newRestartCount
- the new value for RestartCount.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setRestartJobId
void setRestartJobId(Long newRestartJobId)
Set the value for RestartJobId. (The job id of the job that restarted this job.) This value is optional.- Parameters:
newRestartJobId
- the new value for RestartJobId.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setReturnCode
void setReturnCode(Long newReturnCode)
Set the value for ReturnCode. (The return code of the processed command) This value is optional.- Parameters:
newReturnCode
- the new value for ReturnCode.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setStartAtValue
void setStartAtValue(String newStartAtValue)
Set the value for StartAtValue. (At which job chain step the job should start running from.) This value is optional.- Parameters:
newStartAtValue
- the new value for StartAtValue.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
setHoldOnSubmit
void setHoldOnSubmit(boolean newHoldOnSubmit)
Set the value for HoldOnSubmit. (Should any submitted Job be held by default.)- Parameters:
newHoldOnSubmit
- the new value for HoldOnSubmit.- Throws:
ObjectNotAttachedToSessionException
- This will be thrown if this method is called while the object is not attached to a session.
-
createConstraintContext
ConstraintContext createConstraintContext()
Create a ConstraintContext so that the constraints can be verified.- Returns:
- The ConstraintContext
-
createJobDefinitionAlertSourceFor
JobDefinitionAlertSource createJobDefinitionAlertSourceFor()
Creates a new Job Definition Alert Source. Sets the job definition match pattern to exactly the job definition of the current job. Adds job definition parameter matches using the names and values of all key parameters of the job definition.- Returns:
- The Job Definition Alert Source.
-
getJobParameterByName
JobParameter getJobParameterByName(String parameterName)
Return the JobParameter for the given name. The name is taken from the JobDefinitionParameter- Parameters:
parameterName
- The name of the JobParameter- Returns:
- The JobParameter for the given name, null if the parameter with that name could not be found
-
getRecurrenceJobs
RWIterable<Job> getRecurrenceJobs()
Return an iterator with all jobs in the recurrence for this job, including this. If the job is not in a recurrence group, the iterator will only include this job.- Specified by:
getRecurrenceJobs
in interfaceJobComp
- Returns:
- The iterator over the all jobs of the recurrence that this job is in, including this job.
-
getExpandedJobList
List<Job> getExpandedJobList()
Returns a list of this job and its children that are to be shown in an expanded state; in general this is during the execution phase of a job.- Returns:
- Returns a list of jobs.
-
isAllowedQueue
boolean isAllowedQueue(Queue queue)
Returns true if the job can run on this queue.- Parameters:
queue
- Return true if the job can run on the supplied queue.- Returns:
- Returns true if the job can run on this queue.
-
isAllowedProcessServer
boolean isAllowedProcessServer(ProcessServer processServer)
Returns true if the job can run on this process server.- Parameters:
processServer
- Return true if the job can run on the supplied process server.- Returns:
- Returns true if the job can run on this process server.
-
setRequestedStartTimeToParent
void setRequestedStartTimeToParent() throws JobHasNoParentException
Set the value for RequestedStart to be the same as the parent Job.- Throws:
JobHasNoParentException
- Operation requires that the Job has a parent, but it does not.
-
createOperatorMessage
OperatorMessage createOperatorMessage(String text, String replyExpression)
Create an operator message for this job. If a reply expression is set and the job is currently executing, the job status will be set to 'Console'- Parameters:
text
- The text of the operator messagereplyExpression
- A regular expression to which the reply must match, or null if no reply is expected- Returns:
- The created OperatorMessage
-
evaluateJobChainCallInExpressionParameterMappings
void evaluateJobChainCallInExpressionParameterMappings()
If this is a jobchain call evaluates its JobChainCallInExpressionParameterMappings. Can throw runtime exception ParameterInMappingNotFoundException if the job definition parameter cannot be found on the job.
-
removeFromRecurrenceGroup
void removeFromRecurrenceGroup()
Remove this job from the recurrence group that it belongs to.
-
markForArchive
void markForArchive(String server, String mark, DateTimeZone deletionDate)
Mark a job for archiving (requires archiving module).- Parameters:
server
- The server to archive to, may be null to archive to the default server.mark
- The mark to apply.deletionDate
- Date after which the job may be automatically deleted by the archiving system if it has been archived to the archive server. Set to null to manage deletion manually.
-
getRelativeJob
Job getRelativeJob(String jobName) throws JobNotFoundRuntimeException, IncorrectFormatRuntimeException
Get the job by name of the job in the current job chain.- Parameters:
jobName
- The name of the relative job- Returns:
- The relative job
- Throws:
JobNotFoundRuntimeException
- A request was made for a job, however the job did not exist.IncorrectFormatRuntimeException
- An expression is not syntactically correct.
-
getPreviousStepJob
Job getPreviousStepJob() throws StepDoesNotExistException, NotWithinAChainException
Get the previous step job.
This method can be called from a job that corresponds to a step or a call.- Returns:
- The last non-skipped previous step job instance.
What's the previous step: Formally, the previous JobChainStep is the previous step in the list of steps ordered by their step sequence number.
What's a skipped step job: A step job is skipped when the step precondition did not succeed. In this case a new job instance for that step is created and started later.Exception: When there is no non-skipped job instance of the previous step, the last skipped job instance of the previous step is returned.
- Throws:
StepDoesNotExistException
- The JobChain does not contain the requested stepNotWithinAChainException
- This job is neither a step nor a call of a JobChain
-
getNextStepJob
Job getNextStepJob() throws StepDoesNotExistException, NotWithinAChainException
Get the next step job.
This method can be called from a job that corresponds to a step or a call.- Returns:
- The last non-skipped next step job instance.
What's the next step: Formally, the next JobChainStep is the next step in the list of steps ordered by their step sequence number.
What's a skipped step job: A step job is skipped when the step precondition did not succeed. In this case a new job instance for that step is created and started later.Exception: When there is no non-skipped job instance of the next step, the last skipped job instance of the next step is returned.
- Throws:
StepDoesNotExistException
- The JobChain does not contain the requested stepNotWithinAChainException
- This job is neither a step nor a call of a JobChain
-
setStatusExternal
void setStatusExternal(JobStatus jobStatus)
Set the status of a job that has CompletionStrategy of CompletionStrategyType.External.- Parameters:
jobStatus
- New status, must be JobStatus.Completed, JobStatus.Error, or JobStatus.Unknown.
-
setUpdateAction
void setUpdateAction(UpdateFutureJobActionType actionType)
Set the action to be executed by the UpdateFutureJobsActionWorker and start it. The action is set by creating an UpdateFutureJobAction object for this job with the requested action. This triggers an Action Worker to perform the action. An update is performed by creating a new job and canceling the current job. The job ids are swapped.- Parameters:
actionType
- Action to be executed by the UpdateFutureJobsActionWorker.
-
getRecurrenceInfo
RecurrenceInfo getRecurrenceInfo()
Returns a RecurrenceInfo object that gives access to the details of the recurrence that is coded in the recurrence pattern string. Returns null if the pattern string is null or invalid.- Returns:
- The RecurrenceInfo object
-
getObjectTagsFromQueue
RWIterable<ObjectTag> getObjectTagsFromQueue()
Returns an RWIterable with ObjectTag instances from the Queue (this is a convenience method, you can get it from Queue directly as well). If the Queue is not set, returns an empty RWIterable.- Specified by:
getObjectTagsFromQueue
in interfaceJobComp
- Returns:
- RWIterable with ObjectTag instances when present, an empty RWIterable otherwise.
-
getObjectTagsFromJobDefinition
RWIterable<ObjectTag> getObjectTagsFromJobDefinition()
Returns an RWIterable with ObjectTag instances from the JobDefinition of the Job (this is a convenience method, you can get it from JobDefinition directly as well). If the JobDefinition is not set, returns an empty RWIterable.- Specified by:
getObjectTagsFromJobDefinition
in interfaceJobComp
- Returns:
- Iterator with RWIterable instances when present, empty RWIterable otherwise.
-
getObjectTagFromQueue
ObjectTag getObjectTagFromQueue(String objectTagDefinitionName)
Returns the ObjectTag from the Queue for given ObjectTagDefinition BusinessKey or name if present, null otherwise (this is a convenience method, you can get it from Queue directly as well). If the Queue is not set, returns null.- Parameters:
objectTagDefinitionName
- BusinessKey or name of an ObjectTagDefinition. If only the name is provided the ObjectTagDefinition will be retrieved from the default partition- Returns:
- ObjectTag when present, null otherwise.
-
getObjectTagFromJobDefinition
ObjectTag getObjectTagFromJobDefinition(String objectTagDefinitionBusinessKey)
Returns the ObjectTag from the JobDefinition for given ObjectTagDefinition BusinessKey or name if present, null otherwise (this is a convenience method, you can get it from JobDefinition directly as well). If the JobDefinition is not set, returns null.- Parameters:
objectTagDefinitionBusinessKey
- BusinessKey or name of an ObjectTagDefinition. If only the name is provided the ObjectTagDefinition will be retrieved from the default partition- Returns:
- ObjectTag when present, null otherwise.
-
getMaximumConcurrentExecutionCount
Long getMaximumConcurrentExecutionCount()
Returns the number that allows for maximum concurrent processing if applied to the license key for the global execution limit. It throws a InvalidStatusForMaximumConcurrentExecutionCountException if called for a job in a non-final status.- Returns:
- The maximum number of jobs that could theoretically run in parallel.
-
createLinkedJobFile
JobFile createLinkedJobFile(JobFile jobFileToLink, String jobFileName, Long jobFileOrder)
Creates a JobFile that will be linked to another JobFile.- Parameters:
jobFileToLink
- The JobFile to be linked to.jobFileName
- The name of the JobFile to be created.jobFileOrder
- The order of the JobFile to be created.- Returns:
- A new JobFile that is linked to another JobFile.
-
explainJobStatus
String explainJobStatus()
Explain why the Job is in its current status. This currently handles EventWait and Queued.- Returns:
- The explanation of why the Job is in its current status.
-
explainJobStatusHTML
String explainJobStatusHTML()
Explain why the Job is in its current status, in HTML. This currently handles EventWait and Queued.- Returns:
- The explanation of why the Job is in its current status.
-
hold
JobStatus hold()
Hold a job, put it in the held state.- Returns:
- The status of the held job, after it's been held.
-
release
JobStatus release()
Release a job that is in the held state.- Returns:
- The status of the released job, after it's been released, or null if the job is already released.
-
enable
JobStatus enable()
Enable a job that is currently disabled. Only jobs that are steps or calls in a jobchain can be enabled. In addition, only jobs that are currently disabled can be enabled.- Returns:
- The status of the disabled job, after it's been enabled, or null if the job is already enabled.
-
disable
JobStatus disable()
Disable a job. Only jobs that are steps or calls in a jobchain can be disabled. In addition, they can only disabled if they have not yet starting running.- Returns:
- The status of the job, after it's been disabled.
-
kill
JobStatus kill()
Kill a job that is currently executing- Returns:
- The status of the killed job, after it's been killed.
-
cancel
JobStatus cancel()
Cancel a job that is not being executed yet- Returns:
- The status of the canceled job, after it's been canceled.
-
restart
Job restart()
Restart the job by submitting a new job with the same parameters. Recurrence settings for this job will be ignored.- Returns:
- The restarted job.
-
restartFromError
Job restartFromError()
Restart the job, skipping the completed child jobs, to continue with the first error job. The latest version of the job definition is used.- Returns:
- The restarted job.
-
restartRecurrence
Job restartRecurrence()
Restart the job group by submitting a new job group with the same parameters.- Returns:
- The restarted job. This is the first of the presubmitted jobs.
-
restartFromStep
void restartFromStep(RestartStepOptions restartStepOptions)
This will trigger the Restart Behaviour functionality, allowing an operator to restart a step in a running chain.- Parameters:
restartStepOptions
- Container object with the options to restart from this step.
-
resubmit
Job resubmit()
Prepare a new job with the same parameters, but clear the recurrence attributes.- Returns:
- The new prepared job.
-
resubmitRecurrence
Job resubmitRecurrence()
Prepare a new job with the same parameters, including all recurrence attributes.- Returns:
- The new prepared job.
-
cancelRecurrence
Long cancelRecurrence()
Cancel all jobs in a recurrence group where this is possible. Submit frames and recurrences are stopped from resubmitting jobs by setting the end time to now. The scheduled jobs are canceled.- Returns:
- The number of jobs that were canceled.
-
deleteRecurrence
Long deleteRecurrence()
Delete all jobs in a recurrence group where this is possible.- Returns:
- The number of jobs that were deleted.
-
holdRecurrence
Long holdRecurrence()
Hold all jobs in a recurrence group where this is possible.- Returns:
- The number of jobs that were held.
-
releaseRecurrence
Long releaseRecurrence()
Release all jobs in a job group where this is possible.- Returns:
- The number of jobs that were released.
-
runNow
JobStatus runNow()
Start the process immediately, ignoring most scheduling constraints.- Returns:
- The status of the process, after it's been started.
-
getNumRuntimeParameters
Long getNumRuntimeParameters()
Get the number of runtime parameters this job has.- Returns:
- The number of runtime parameters this job has.
-
registerAsTemporaryObject
void registerAsTemporaryObject(NamedRootObject object)
Register given NamedRootObject with this Process to become a temporary object. Register given NamedRootObject with this Process to become a temporary object. The given object will become a temporary object and will be removed once this Process is deleted. Temporary Objects will not be visible in the User Interface and will be renamed to an internal name. The passed in object can only be registered once, it is not allowed to register it with a different Process. You are allowed to register the object to a Process it is not part of.- Parameters:
object
- The object to register as a temporary object.
-
getForcedProcessServer
ProcessServer getForcedProcessServer()
Get the ForcedProcessServer.- Returns:
- ForcedProcessServer
- 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.
-
getJobChainCall
JobChainCall getJobChainCall()
Get the JobChainCall.- Returns:
- JobChainCall
- 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.
-
getJobChainStep
JobChainStep getJobChainStep()
Get the JobChainStep.- Returns:
- JobChainStep
- 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.
-
getJobDefinition
JobDefinition getJobDefinition()
Get the JobDefinition.- Returns:
- JobDefinition
- 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.
-
getParentJob
Job getParentJob()
Get the ParentJob.- Returns:
- ParentJob
- 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.
-
getJobGroup
JobGroup getJobGroup()
Get the JobGroup.- Returns:
- JobGroup
- 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.
-
getOwnerSubject
Subject getOwnerSubject()
Get the OwnerSubject.- Specified by:
getOwnerSubject
in interfaceHasOwner
- Returns:
- OwnerSubject
- 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.
-
getQueue
Queue getQueue()
Get the Queue.- Returns:
- Queue
- 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.
-
getProcessServer
ProcessServer getProcessServer()
Get the ProcessServer.- Returns:
- ProcessServer
- 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.
-
getPreviousProcessServer
@Deprecated ProcessServer getPreviousProcessServer()
Deprecated.Get the PreviousProcessServer.- Returns:
- PreviousProcessServer
- 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.
-
getProxyProcessServer
ProcessServer getProxyProcessServer()
Get the ProxyProcessServer.- Returns:
- ProxyProcessServer
- 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.
-
getSubmitFrame
SubmitFrame getSubmitFrame()
Get the SubmitFrame.- Returns:
- SubmitFrame
- 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.
-
getTimeWindow
TimeWindow getTimeWindow()
Get the TimeWindow.- Returns:
- TimeWindow
- 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.
-
getTimeWindowTimeZone
TimeZone getTimeWindowTimeZone()
Get the TimeWindowTimeZone.- Returns:
- TimeWindowTimeZone
- 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.
-
getJobTimeZone
TimeZone getJobTimeZone()
Get the JobTimeZone.- Returns:
- JobTimeZone
- 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.
-
getLastModifierSubject
Subject getLastModifierSubject()
Get the LastModifierSubject.- Returns:
- LastModifierSubject
- 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.
-
getSAPNWCallbackVariant
SAPNWCallbackVariant getSAPNWCallbackVariant()
Get the SAPNWCallbackVariant.- Returns:
- SAPNWCallbackVariant
- 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.
-
setForcedProcessServer
void setForcedProcessServer(ProcessServer newForcedProcessServer)
Set the value for ForcedProcessServer. This value is optional.- Parameters:
newForcedProcessServer
- is the object to set ForcedProcessServer to. The process server on which this job must run, regardless of other possibilities.
-
setParentJob
void setParentJob(Job newParentJob)
Set the value for ParentJob. This value is optional.- Parameters:
newParentJob
- is the object to set ParentJob to. The parent Job of this Job.
-
setJobGroup
void setJobGroup(JobGroup newJobGroup)
Set the value for JobGroup. This value is optional.- Parameters:
newJobGroup
- is the object to set JobGroup to. The job group for a job, containing information about rescheduling the job.
-
setQueue
void setQueue(Queue newQueue)
Set the value for Queue. This value is mandatory.- Parameters:
newQueue
- is the object to set Queue to. The queue of a job. If this isnull
, then the object cannot be persisted.
-
setSubmitFrame
void setSubmitFrame(SubmitFrame newSubmitFrame)
Set the value for SubmitFrame. This value is optional.- Parameters:
newSubmitFrame
- is the object to set SubmitFrame to. The submit frame of this job.
-
setTimeWindow
void setTimeWindow(TimeWindow newTimeWindow)
Set the value for TimeWindow. This value is optional.- Parameters:
newTimeWindow
- is the object to set TimeWindow to. The time window this job must run in.
-
setTimeWindowTimeZone
void setTimeWindowTimeZone(TimeZone newTimeWindowTimeZone)
Set the value for TimeWindowTimeZone. This value is optional.- Parameters:
newTimeWindowTimeZone
- is the object to set TimeWindowTimeZone to. Timezone with which time windows are evaluated for the job.
-
setJobTimeZone
void setJobTimeZone(TimeZone newJobTimeZone)
Set the value for JobTimeZone. This value is optional.- Parameters:
newJobTimeZone
- is the object to set JobTimeZone to. The time zone of this job, used to represent all scheduling times of the job.
-
setSAPNWCallbackVariant
void setSAPNWCallbackVariant(SAPNWCallbackVariant newSAPNWCallbackVariant)
Set the value for SAPNWCallbackVariant. This value is optional.- Parameters:
newSAPNWCallbackVariant
- is the object to set SAPNWCallbackVariant to. Link a job to a SAP NW callback variant.
-
getChildJobs
RWIterable<Job> getChildJobs()
Get anRWIterable
over a collection ofChildJobs
, the collection will be ordered by ChildOrder. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The parent Job of this Job.- Specified by:
getChildJobs
in interfaceJobComp
- Returns:
- An
RWIterable
over a collection ofJob
objects , the collection will be ordered by ChildOrder.
-
getJobData
RWIterable<JobDatum> getJobData()
Get anRWIterable
over an ordered collection ofJobData
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The MetaData associated with a Job.- Specified by:
getJobData
in interfaceJobComp
- Returns:
- An
RWIterable
over an ordered collection ofJobDatum
objects .
-
createJobDatum
JobDatum createJobDatum(DatumDefinition newDatumDefinition)
Create a newJobDatum
linked to this object.- Parameters:
newDatumDefinition
- The other parent of theJobDatumDatumDefinition
association.- Returns:
- a new
JobDatum
.
-
getJobDatumByDatumDefinition
JobDatum getJobDatumByDatumDefinition(DatumDefinition datumDefinition)
Get the JobDatum by JobDatum.- Parameters:
datumDefinition
-- Returns:
- the JobDatum, or
null
if it could not be found
-
getJobFiles
RWIterable<JobFile> getJobFiles()
Get anRWIterable
over a collection ofJobFiles
, the collection will be ordered by FileOrder. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. A job file.- Specified by:
getJobFiles
in interfaceJobComp
- Returns:
- An
RWIterable
over a collection ofJobFile
objects , the collection will be ordered by FileOrder.
-
createJobFile
JobFile createJobFile()
Create a newJobFile
linked to this object.- Returns:
- a new
JobFile
.
-
getJobFileByFileOrder
JobFile getJobFileByFileOrder(Long fileOrder)
Get the JobFile by JobFileOrder.- Parameters:
fileOrder
-- Returns:
- the JobFile, or
null
if it could not be found
-
getJobFileByName
JobFile getJobFileByName(String name)
Get the JobFile by JobName.- Parameters:
name
-- Returns:
- the JobFile, or
null
if it could not be found
-
getJobJobLocks
RWIterable<JobJobLock> getJobJobLocks()
Get anRWIterable
over an ordered collection ofJobJobLocks
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The locks required by a job.- Specified by:
getJobJobLocks
in interfaceJobComp
- Returns:
- An
RWIterable
over an ordered collection ofJobJobLock
objects .
-
createJobJobLock
JobJobLock createJobJobLock(JobLock newJobLock)
Create a newJobJobLock
linked to this object.- Parameters:
newJobLock
- The other parent of theJobJobLockJobLock
association.- Returns:
- a new
JobJobLock
.
-
getJobNotes
RWIterable<JobNote> getJobNotes()
Get anRWIterable
over an ordered collection ofJobNotes
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The notes for a job.- Specified by:
getJobNotes
in interfaceJobComp
- Returns:
- An
RWIterable
over an ordered collection ofJobNote
objects .
-
createJobNote
JobNote createJobNote()
Create a newJobNote
linked to this object.- Returns:
- a new
JobNote
.
-
getJobParameters
RWIterable<JobParameter> getJobParameters()
Get anRWIterable
over a collection ofJobParameters
, the collection will be ordered by DisplayOrder. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Job parameters.- Specified by:
getJobParameters
in interfaceJobComp
- Returns:
- An
RWIterable
over a collection ofJobParameter
objects , the collection will be ordered by DisplayOrder.
-
createJobParameter
JobParameter createJobParameter(JobDefinitionParameter newJobDefinitionParameter)
Create a newJobParameter
linked to this object.- Parameters:
newJobDefinitionParameter
- The other parent of theJobParameterJobDefinitionParameter
association.- Returns:
- a new
JobParameter
.
-
getJobRaiseEvents
RWIterable<JobRaiseEvent> getJobRaiseEvents()
Get anRWIterable
over an ordered collection ofJobRaiseEvents
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The events to raise when a job completes with a particular status.- Specified by:
getJobRaiseEvents
in interfaceJobComp
- Returns:
- An
RWIterable
over an ordered collection ofJobRaiseEvent
objects .
-
createJobRaiseEvent
JobRaiseEvent createJobRaiseEvent()
Create a newJobRaiseEvent
linked to this object.- Returns:
- a new
JobRaiseEvent
.
-
getJobRaiseEventByStatusToRaiseOnEventDefinition
JobRaiseEvent getJobRaiseEventByStatusToRaiseOnEventDefinition(JobStatus statusToRaiseOn, EventDefinition eventDefinition)
Get the JobRaiseEvent by JobRaiseEvents.- Parameters:
statusToRaiseOn
-eventDefinition
-- Returns:
- the JobRaiseEvent, or
null
if it could not be found
-
getJobRuntimeLimits
RWIterable<JobRuntimeLimit> getJobRuntimeLimits()
Get anRWIterable
over an ordered collection ofJobRuntimeLimits
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The runtime limits of a job.- Specified by:
getJobRuntimeLimits
in interfaceJobComp
- Returns:
- An
RWIterable
over an ordered collection ofJobRuntimeLimit
objects .
-
createJobRuntimeLimit
JobRuntimeLimit createJobRuntimeLimit()
Create a newJobRuntimeLimit
linked to this object.- Returns:
- a new
JobRuntimeLimit
.
-
getJobRuntimeLimitByName
JobRuntimeLimit getJobRuntimeLimitByName(String name)
Get the JobRuntimeLimit by JobName.- Parameters:
name
-- Returns:
- the JobRuntimeLimit, or
null
if it could not be found
-
getJobWaitEvents
RWIterable<JobWaitEvent> getJobWaitEvents()
Get anRWIterable
over an ordered collection ofJobWaitEvents
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The events this job is waiting on before it will start.- Specified by:
getJobWaitEvents
in interfaceJobComp
- Returns:
- An
RWIterable
over an ordered collection ofJobWaitEvent
objects .
-
createJobWaitEvent
JobWaitEvent createJobWaitEvent()
Create a newJobWaitEvent
linked to this object.- Returns:
- a new
JobWaitEvent
.
-
getJobWaitEventByEventDefinition
JobWaitEvent getJobWaitEventByEventDefinition(EventDefinition eventDefinition)
Get the JobWaitEvent by JobWaitEvents.- Parameters:
eventDefinition
-- Returns:
- the JobWaitEvent, or
null
if it could not be found
-
getPublishApproval
PublishApproval getPublishApproval()
Get the PublishApproval. The related PublishApproval job that created this publish approval- Returns:
- nullPublishApproval
- 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.
-
getUserMessage
UserMessage getUserMessage()
Get the UserMessage. The related UserMessage job that created this user message- Returns:
- nullUserMessage
- 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.
-
checkViewPrivilege
RequiredPermission checkViewPrivilege()
Check whether or not the view action can be performed on this object.- Returns:
- a
RequiredPermission
instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
-
checkCreateJobNotesPrivilege
RequiredPermission checkCreateJobNotesPrivilege()
Check whether or not the createJobNotes action can be performed on this object.- Returns:
- a
RequiredPermission
instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
-
checkEditPrivilege
RequiredPermission checkEditPrivilege()
Check whether or not the edit action can be performed on this object.- Returns:
- a
RequiredPermission
instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
-
checkDeletePrivilege
RequiredPermission checkDeletePrivilege()
Check whether or not the delete action can be performed on this object.- Returns:
- a
RequiredPermission
instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
-
-