Package oracle.as.scheduler
Class JobSetStep
java.lang.Object
oracle.as.scheduler.JobSetStep
- All Implemented Interfaces:
Serializable
The JobSetStep class represents a step within a JobSet.
A JobSetStep can be a
JobDefinition
or a nested JobSet
.
This step is validated in the context of a JobSet by
BaseMetadata.validate()
.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
Link types for the links for a serial JobSetStep. -
Constructor Summary
ConstructorsConstructorDescriptionJobSetStep
(String stepId, MetadataObjectId jobId) Constructs a JobSetStep.JobSetStep
(String stepId, MetadataObjectId jobId, ParameterList stepParams) Constructs a JobSetStep. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Checks if the object is equal to this JobSetStep.getJobId()
Gets the job id for this step.getLink
(JobSetStep.LinkType linkType) Gets the stepId for the givenLinkType
.Gets the stepId for this step.The parameters and properties for this step.void
setJobId
(MetadataObjectId jobId) Sets the jobId for this step.void
setLink
(JobSetStep.LinkType linkType, String linkStepId) Defines a linked step for the givenLinkType
.void
setStepProps
(ParameterList stepParams) Sets the parameters and step properties for this step.toString()
String representation for this JobSetStep object.
-
Constructor Details
-
JobSetStep
Constructs a JobSetStep.- Parameters:
stepId
- a step id that is unique within the JobSet.jobId
- the MetadataObjectId of the JobDefinition or JobSet for this step.
-
JobSetStep
Constructs a JobSetStep.- Parameters:
stepId
- a step id that is unique within the JobSet.jobId
- the MetadataObjectId of the JobDefinition or JobSet for this step.stepParams
- the step parameters and properties for this step.
-
-
Method Details
-
setLink
Defines a linked step for the givenLinkType
.The given stepId will be run when this step completes with a state matching the link type.
- Parameters:
linkType
- the type of link to set.linkStepId
- the id of the step for the linkType.
-
getLink
Gets the stepId for the givenLinkType
.- Parameters:
linkType
- the link type to get the step id for.- Returns:
- step id for the link type.
-
getStepId
Gets the stepId for this step.- Returns:
- the id of this step.
-
setJobId
Sets the jobId for this step.- Parameters:
jobId
- the job id (JobDefinition or JobSet) for this step.
-
getJobId
Gets the job id for this step.- Returns:
- the job id (JobDefinition or JobSet) for this step.
-
setStepProps
Sets the parameters and step properties for this step.- Parameters:
stepParams
- the step parameters and properties for this step.
-
getStepProps
The parameters and properties for this step.- Returns:
- a
ParameterList
with parameters and properties for this step.
-
equals
Checks if the object is equal to this JobSetStep.Equal means it has the same stepId, same jobId, same linked step ids, and same step parameters and properties.
-
toString
String representation for this JobSetStep object.
-