Package oracle.iam.scheduler.vo
Class SearchResult
java.lang.Object
oracle.iam.scheduler.vo.SearchResult
- All Implemented Interfaces:
Serializable
This object represents a schedule job search result.
- Author:
- jyarora
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionProvides Job history object of a schedule job.Provides JobDetails value object.int
Provides schedule job status.Trigger[]
Provides a collection of associated triggers with schedule job.void
setJobHistory
(JobHistory jobHistory) Sets Job history object of a schedule job.void
setTaskDetail
(JobDetails taskDetail) Sets JobDetails value object.void
setTaskStatus
(int taskStatus) Sets schedule job status.void
setTaskTriggers
(Trigger[] taskTriggers) Sets a collection of associated triggers with schedule job.
-
Constructor Details
-
SearchResult
public SearchResult()
-
-
Method Details
-
getJobHistory
Provides Job history object of a schedule job.- Returns:
- Job history object of a schedule job
-
setJobHistory
Sets Job history object of a schedule job.- Parameters:
jobHistory
- Job history object of a schedule job
-
getTaskStatus
public int getTaskStatus()Provides schedule job status. Supported values are 'STOPPED', 'RUNNING', 'FAILED', 'INTERRUPT'.- Returns:
- Schedule job status
-
setTaskStatus
public void setTaskStatus(int taskStatus) Sets schedule job status. Supported values are 'STOPPED', 'RUNNING', 'FAILED', 'INTERRUPT'.- Parameters:
taskStatus
- Schedule job status
-
getTaskTriggers
Provides a collection of associated triggers with schedule job.- Returns:
- A collection of associated triggers with schedule job
-
setTaskTriggers
Sets a collection of associated triggers with schedule job.- Parameters:
taskTriggers
- A collection of associated triggers with schedule job
-
getTaskDetail
Provides JobDetails value object.- Returns:
- JobDetails value object
-
setTaskDetail
Sets JobDetails value object.- Parameters:
taskDetail
- JobDetails value object
-