Package | Description |
---|---|
oracle.as.scheduler |
Enterprise Scheduler API interfaces and classes, including
RuntimeService and MetadataService.
|
Modifier and Type | Method and Description |
---|---|
JobSetStep |
JobSet.deleteStep(String stepId)
Deletes the JobSet step with the given step id.
|
JobSetStep |
JobSet.getStep(String stepId)
Gets the JobSet step with the given step id.
|
Modifier and Type | Method and Description |
---|---|
void |
JobSet.addStep(JobSetStep step)
Adds the given step to this JobSet.
|
void |
JobSet.setJobSetSteps(JobSetStep[] steps)
Deprecated.
Replaced by
JobSet.setJsSteps(JobSetStep[]) . |
void |
JobSet.setJsSteps(JobSetStep[] steps)
Sets the steps for this jobset to the given steps.
|
Constructor and Description |
---|
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.
|
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.
|