If the failed job is later run manually and completes this Job will reflect the new state. As such it is useful as a trigger point for the completion of a sequence of jobs.
| independent | Whether the child jobs are independent or not. |
| jobs | The child jobs. |
| name | A name, can be any text. |
| Example 1 | A simple sequence of two jobs. |
| Configured By | ATTRIBUTE |
| Access | READ_WRITE |
| Required | Default is dependent child jobs. |
Whether the child jobs are independent or not.
| Configured By | ELEMENT |
| Access | WRITE_ONLY |
| Required | No, but pointless if missing. |
The child jobs.
| Configured By | ATTRIBUTE |
| Access | READ_WRITE |
| Required | No. |
A name, can be any text.
A simple sequence of two jobs.
<oddjob>
<job>
<sequential name="A sequence of two jobs">
<jobs>
<echo>This runs first.</echo>
<echo>This runs after.</echo>
</jobs>
</sequential>
</job>
</oddjob>