Class JobSet
- All Implemented Interfaces:
Serializable
Steps within a JobSet can run either in serial or in parallel mode. In case of serial execution, the JobSet also supports conditional branching based on the execution status of the previous step. For example within a serial JobSet JS, consisting of JobDefinitions J1, J2, and J3, the step J2 can be defined to run if and only if J1 completes successfully. Similarly J3 can be defined to run if J2 finishes with Success or Warning.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
Enums to indicate the execution mode for the JobSet. -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionJobSet
(String name, String displayNameKey, String descriptionKey, JobSet.ExecutionMode mode, String[] resourceBundleIDs) Constructs a JobSet with basic attributes.JobSet
(String name, String displayName, String description, JobSet.ExecutionMode mode, MetadataObjectId objectId) Constructs a JobSet.JobSet
(String name, String displayNameKey, String descriptionKey, JobSet.ExecutionMode mode, ParameterList parameters, JobSetStep[] steps, String[] resourceBundleIDs) Constructs a nearly fully defined JobSet.JobSet
(String name, String displayNameKey, String descriptionKey, JobSet.ExecutionMode mode, ParameterList parameters, JobSetStep[] steps, String firstStep, String[] resourceBundleIDs) Constructs a fully defined JobSet and associate the JobSet definition with a set of resource bundles.JobSet
(String name, String description, JobSet.ExecutionMode mode) Constructs a JobSet with basic attributes.JobSet
(String name, String description, JobSet.ExecutionMode mode, MetadataObjectId objectId) Constructs a JobSet.JobSet
(String name, String description, JobSet.ExecutionMode mode, ParameterList parameters, JobSetStep[] steps) Constructs a nearly fully defined JobSet.JobSet
(String name, String description, JobSet.ExecutionMode mode, ParameterList parameters, JobSetStep[] steps, String firstStep) Constructs a fully defined JobSet. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addStep
(JobSetStep step) Adds the given step to this JobSet.int
compareWithParams
(Object obj) Compares an object for equality with thisJobSet
object.deleteStep
(String stepId) Deletes the JobSet step with the given step id.boolean
Compares an object for equality with this JobSet object.static JobSet
from
(CompositeData cd) Create an instance of the model specific class out of an associated CompositeData instance exclude from javadocGets all steps of this JobSet and any nested Jobset.Gets the intended type of this metadata.Checks whether this JobSet is a serial or a parallel JobSet.Returns the id of the first or starting step in a serial JobSet.Deprecated.Gets all jobset steps of this jobset.Returns all the parameters defined for this JobSetGets the JobSet step with the given step id.getSteps()
Deprecated.Replaced bygetJsSteps()
.void
Sets the JobSet execution mode to either serial or parallel mode.void
setFirstStep
(String firstStep) Sets the unique id of the first step to run for a serial JobSet.void
setJobSetSteps
(JobSetStep[] steps) Deprecated.Replaced bysetJsSteps(JobSetStep[])
.void
setJsSteps
(JobSetStep[] steps) Sets the steps for this jobset to the given steps.void
setParameters
(ParameterList params) Sets the parameters of this JobSet.void
Deprecated.Replaced bysetJsSteps(JobSetStep[])
.exclude from javadocstatic CompositeType
Returns the CompositeType that describes this model specific class exclude from javadocA debug string representation for this JobSet object.void
Validates this JobSet for execution.Methods inherited from class oracle.as.scheduler.BaseMetadata
getDescription, getDescriptionKey, getDisplayName, getDisplayNameKey, getMetadataObjectId, getName, getResourceBundles, hashCode, setDescription, setDescriptionKey, setDisplayName, setDisplayNameKey, setResourceBundles, toString, validate
-
Field Details
-
STEPID_DELIMITER
- See Also:
-
-
Constructor Details
-
JobSet
Constructs a JobSet with basic attributes.- Parameters:
name
- name of the JobSet definition to be created. The name is also used as the default display name unless otherwise specifically set.description
- optional description for the JobSet definition. Anull
value is acceptable.mode
-true
for serial JobSet,false
for parallel JobSet.
-
JobSet
public JobSet(String name, String displayNameKey, String descriptionKey, JobSet.ExecutionMode mode, String[] resourceBundleIDs) Constructs a JobSet with basic attributes.- Parameters:
name
- name of the JobSet definition to be created. The name is also used as the default display name unless otherwise specifically set.displayNameKey
- the resource bundle key for the display name. Optional.descriptionKey
- the resource bundle key for the description. Optional.mode
-true
for serial JobSet,false
for parallel JobSet.resourceBundleIDs
- an array of resource bundle id. Optional.
-
JobSet
public JobSet(String name, String description, JobSet.ExecutionMode mode, MetadataObjectId objectId) Constructs a JobSet.Internal Use Only.
This constructor is for internal use ONLY and should not be used to construct a new instance. This constructor is used internally by the
MetadataService
to populate the unique identifier of this object(definition) within the metadata repository.- Parameters:
name
- name of the JobSet definition to be created. The name is also used as the default display name unless otherwise specifically set.description
- optional description for the JobSet definition. A null value is acceptable.mode
-true
for serial JobSet,false
for parallel JobSet.objectId
- unique identifier of this object in the metadata repository. The identifier is set which this object is retrieved viaMetadataService
. exclude from javadoc
-
JobSet
public JobSet(String name, String displayName, String description, JobSet.ExecutionMode mode, MetadataObjectId objectId) Constructs a JobSet.Internal Use Only.
This constructor is for internal use ONLY and should not be used to construct a new instance. This constructor is used internally by the
MetadataService
to populate the unique identifier of this object(definition) within the metadata repository.- Parameters:
name
- name of the JobSet definition to be created.description
- optional description for the JobSet definition. Anull
value is acceptable.mode
-true
for serial JobSet,false
for parallel JobSet.objectId
- unique identifier of this object in the metadata repository. The identifier is set which this object is retrieved viaMetadataService
. exclude from javadoc
-
JobSet
public JobSet(String name, String description, JobSet.ExecutionMode mode, ParameterList parameters, JobSetStep[] steps) Constructs a nearly fully defined JobSet. If the JobSet is serial, the first step must be set by callingsetFirstStep
.- Parameters:
name
- name for the JobSet definition to be created. The name is also used as the default display name unless otherwise specifically set.description
- optional description field for the JobSet.mode
- indicates the execution mode,true
for serial JobSet,false
for parallel JobSet.parameters
- Parameters declared at the JobSet level.steps
- array of JobSetStep objects that represent the steps for this jobset. This is required for a Serial JobSet. The step id must be a valid step id from within the XML document specifying the steps.
-
JobSet
public JobSet(String name, String displayNameKey, String descriptionKey, JobSet.ExecutionMode mode, ParameterList parameters, JobSetStep[] steps, String[] resourceBundleIDs) Constructs a nearly fully defined JobSet. If the JobSet is serial, the first step must be set by callingsetFirstStep
.- Parameters:
name
- name of the JobSet definition to be created. The name is also used as the default display name unless otherwise specifically set.displayNameKey
- the resource bundle key for the display name. Optional.descriptionKey
- the resource bundle key for the description. Optional.mode
- indicates the execution mode,true
for serial JobSet, false for parallel JobSet.parameters
- Parameters declared at the JobSet level.steps
- array of JobSetStep objects that represent the steps for this jobset.resourceBundleIDs
- an array of resource bundle id. Optional This is required for a Serial JobSet. The step id must be a valid step id from within the XML document specifying the steps.
-
JobSet
public JobSet(String name, String description, JobSet.ExecutionMode mode, ParameterList parameters, JobSetStep[] steps, String firstStep) Constructs a fully defined JobSet.- Parameters:
name
- name for the JobSet definition to be created. The name is also used as the default display name unless otherwise specifically set.description
- optional description field for the JobSet.mode
- indicates the execution mode,true
for serial JobSet,false
for parallel JobSet.parameters
- Parameters declared at the JobSet level.steps
- array of JobSetStep objects that represent the steps for this jobset.firstStep
- unique identifier of the step where execution begins for a serial jobset. This parameter is ignored for a parallel jobset.
-
JobSet
public JobSet(String name, String displayNameKey, String descriptionKey, JobSet.ExecutionMode mode, ParameterList parameters, JobSetStep[] steps, String firstStep, String[] resourceBundleIDs) Constructs a fully defined JobSet and associate the JobSet definition with a set of resource bundles.- Parameters:
name
- name of the JobSet definition to be created. The name is also used as the default display name unless otherwise specifically set.displayNameKey
- the resource bundle key for the display name. Optional.descriptionKey
- the resource bundle key for the description. Optional.mode
- indicates the execution mode;true
for serial JobSet, orfalse
for parallel JobSet.parameters
- Parameters declared at the JobSet level.steps
- array of JobSetStep objects that represent the steps for this jobset.firstStep
- unique identifier of the step where execution begins for a serial jobset. This parameter is ignored for a parallel jobset.resourceBundleIDs
- an array of resource bundle id. Optional
-
-
Method Details
-
getExecutionMode
Checks whether this JobSet is a serial or a parallel JobSet.- Returns:
- execution mode of this JobSet (serial or parallel)
-
setExecutionMode
Sets the JobSet execution mode to either serial or parallel mode.- Parameters:
mode
- execution mode to be set (serial or parallel).
-
getParameters
Returns all the parameters defined for this JobSet- Returns:
- instance of ParameterList containing all the parameters.
-
setParameters
Sets the parameters of this JobSet.- Parameters:
params
- instance of ParameterList containing all the parameters.
-
getSteps
Deprecated.Replaced bygetJsSteps()
.Retrieves the details of all the steps in this JobSet definition. The details are returned in the form of XML fragment that comply with the corresponding XML Schema.- Returns:
- XML fragment containing steps of this JobSet.
-
setFirstStep
Sets the unique id of the first step to run for a serial JobSet.Note that the first step is ignored for a parallel JobSet.
- Parameters:
firstStep
- unique step id where serial JobSet execution starts.
-
getFirstStep
Returns the id of the first or starting step in a serial JobSet.Note that the first step is ignored for a parallel JobSet.
- Returns:
- step Id of the first (starting) step for a serial jobset.
-
setSteps
Deprecated.Replaced bysetJsSteps(JobSetStep[])
.Sets the steps and the details of the steps for this JobSet. All details should be specified in an XML fragment that comply with the corresponding XML schema.- Parameters:
doc
- the XML fragment containing the details of JobSet.firstStep
- the valid step Id from within the XML fragment that indicates the first step. Required only for a Serial JobSet. For parallel JobSet, it can be null.
-
addStep
Adds the given step to this JobSet.- Parameters:
step
- the step to add.- Throws:
ValidationException
- if the step id already exists in this JobSet.
-
getStep
Gets the JobSet step with the given step id.- Parameters:
stepId
- the id of the step to get.- Returns:
- requested
JobSetStep
, or null if the step does not exist.
-
deleteStep
Deletes the JobSet step with the given step id.- Parameters:
stepId
- the id of the step to delete.- Returns:
- the deleted step or null if the step does not exist.
-
getAllSteps
public HashMap<String,JobSetStep> getAllSteps() throws MetadataNotFoundException, MetadataServiceExceptionGets all steps of this JobSet and any nested Jobset. The returnedHashMap
contains all of the steps in thisJobSet
and all steps in anyJobSet
that is nested in this JobSet.- Returns:
HashMap
that maps fully qualified stepId (sequence of step names delimited with (STEPID_DELIMITER
) toJobSetStep
and includes all steps in thisJobSet
and any nested jobsets.- Throws:
MetadataNotFoundException
- if any nested JobSet definition does not exist.MetadataServiceException
- if the metadata subsystem encounters an error.
-
getJobSetSteps
Deprecated.Replaced bygetJsSteps()
The returnedHashMap
contains the steps in thisJobSet
Note that order is not defined for the steps and may be different on a subsequent call.Steps in any nested jobsets are not included. To include all nested steps, use
getAllSteps
.- Returns:
HashMap
that maps stepId toJobSetStep
.
-
getJsSteps
Gets all jobset steps of this jobset. The returnedList
contains the steps in thisJobSet
. The steps are returned in the order that they were added to this jobset.Steps in nested jobsets are not included. To include all nested steps, use
getAllSteps
.- Returns:
- an ordered
List
of steps in thisJobSetStep
. - See Also:
-
setJsSteps
Sets the steps for this jobset to the given steps. Any steps already in the jobset will be replaced. If the JobSet is serial, the first step must be set after this by callingsetFirstStep
.- Parameters:
steps
- array ofJobSetStep
objects to set as the steps for this jobset.- Throws:
ValidationException
- if the step ids are not unique.- See Also:
-
setJobSetSteps
Deprecated.Replaced bysetJsSteps(JobSetStep[])
.Sets the steps for this jobset to the given steps. Any steps already in the jobset will be replaced.- Parameters:
steps
- array ofJobSetStep
objects to set as the steps for this jobset.
-
validateForExecution
Validates this JobSet for execution. Performs normal jobset validation and performs additional validation to ensure the jobset is valid for execution.- Throws:
ValidationException
- if any validation errors occur.
-
equals
Compares an object for equality with this JobSet object. -
compareWithParams
Compares an object for equality with thisJobSet
object.- Parameters:
obj
- object to compare.- Returns:
- 0 if the objects are equal; -1 if only customizable params differ (but the same cust params must be in both objs); 1 if there are other differences, including any missing param.
-
toDebugString
A debug string representation for this JobSet object.- Returns:
- String representation of this JobSet. exclude from javadoc
-
toCompositeType
Returns the CompositeType that describes this model specific class exclude from javadoc -
toCompositeData
exclude from javadoc -
from
Create an instance of the model specific class out of an associated CompositeData instance exclude from javadoc- Throws:
IllegalArgumentException
-
getBaseMetadataType
Description copied from class:BaseMetadata
Gets the intended type of this metadata.- Specified by:
getBaseMetadataType
in classBaseMetadata<JobSet>
- Returns:
- the base metadata type
-
clone
- Specified by:
clone
in classBaseMetadata<JobSet>
- Throws:
ValidationException
-
getJsSteps()