/**
  * Execute the sequence of ExecutionItems within the context, and with the given keepgoing value,
  * return true if successful
  */
 protected boolean executeWorkflowItemsForNodeSet(
     final StepExecutionContext executionContext,
     final Map<Integer, StepExecutionResult> failedMap,
     final List<StepExecutionResult> resultList,
     final List<StepExecutionItem> iWorkflowCmdItems,
     final boolean keepgoing) {
   return executeWorkflowItemsForNodeSet(
       executionContext,
       failedMap,
       resultList,
       iWorkflowCmdItems,
       keepgoing,
       executionContext.getStepNumber());
 }