List<CommandItemAction> actionList = new ArrayList<CommandItemAction>();
if(config.getKeys(path + ".actions") != null)
for(String ac : config.getKeys(path + ".actions")) {
ActionType acType = ActionType.valueOf(config.getString(path + ".actions." + ac + ".type"));
String acValue = config.getString(path + ".actions." + ac + ".value");
ActionRunStage acStage = ActionRunStage.valueOf(config.getString(path + ".actions." + ac + ".run-stage"));
actionList.add(new CommandItemAction(ac, acType, acValue, acStage));
}