} else if (Constants.ATTRVALUE_STOP.equalsIgnoreCase(pNode.getNodeValue())) {
oResult = RewriteProcessing.StopProcessing;
} else if (Constants.ATTRVALUE_CONTINUE.equalsIgnoreCase(pNode.getNodeValue())) {
oResult = RewriteProcessing.ContinueProcessing;
} else {
throw new ConfigurationException(String.format(Messages.VALUE_OF_PROCESSING_ATTRIBUTE, pNode.getNodeValue(), Constants.ATTRVALUE_CONTINUE, Constants.ATTRVALUE_RESTART, Constants.ATTRVALUE_STOP));
}
}
return oResult;
}