Represents an execution of a job. The job execution can be accessed from a
JobStepExecution via
JobStepExecution.getJobExecution(). If a pipeline is used to implement a step the step execution is available
in the pipeline dictionary under the key 'JobStepExecution'. If a script module is used to implement a step the step
execution is available as the second parameter of the module's function that is used to execute the step, e.g.:
...
exports.execute( parameters, stepExecution)
{
...
var jobExecution = stepExecution.getJobExecution();
...
}
...