List<DeployerCommandInfo> postProcessCallCommands) {
List commands = configurationXmlDocument.selectNodes("/deployer/command");
if (null != commands) {
for (int i = 0; i < commands.size(); i++) {
Node command = (Node)commands.get(i);
DeployerCommandInfo commandInfo = new DeployerCommandInfo();
commandInfo.onUpdatedPath = XmlUtils.getAttributeValue(command, "updated_path");
commandInfo.commandLine = XmlUtils.getAttributeValue(command, "run");
postProcessCallCommands.add(commandInfo);
}
}