// first action
ActionFlowStepConfig.Builder stepConfigBuilder = new ActionFlowStepConfig.Builder(
0, actionConfig.getName(),
ActionFlowInterceptor.FIRST_FLOW_ACTION_NAME);
ActionFlowStepConfig stepConfig = stepConfigBuilder.build();
actionFlows.put(ActionFlowInterceptor.FIRST_FLOW_ACTION_NAME,
stepConfig);
} else {
prevActionVal = actionsStepMap.get(prevKey).getName();
}
ActionFlowStepConfig.Builder stepConfigBuilder = new ActionFlowStepConfig.Builder(
index, nextActionVal, prevActionVal);
ActionFlowStepConfig stepConfig = stepConfigBuilder.build();
actionFlows.put(actionConfig.getName(), stepConfig);
prevKey = key;
index++;
}