I run IBM JSR 352 batch job under Liberty Profile server. My JSL contains decision, e.g.
<decision id="condition_FTP" ref="ifConditionalStepDecider">
<properties>
<property name="IF_CONDITIONS" value='{"conditions":
[
"STEP2,=,0"
]}'/>
</properties>
<next on="SHOULD_EXECUTE" to="STEP03" />
<next on="SHOULD_SKIP" to="intermediateStep_EMAILERR" />
</decision>
I have tried to retrieve the id of the decision from decider/batchlet but with no luck. It is not inside JobContext or StepContext. Does any of you guys know how I can retrieve it? Thanks a bunch!