@Override
public IRewriteAction parse(Node pNode, RewriterConfiguration pConfig)
throws ConfigurationException {
Node oToNode = ParserHelper.getAttribute(pNode, Constants.ATTR_TO, true);
Node oProcessingNode = pNode.getAttributes().getNamedItem(Constants.ATTR_PROCESSING);
RewriteProcessing oProcessing = ParserHelper.parseProcessing(oProcessingNode, RewriteProcessing.ContinueProcessing);
RewriteAction oAction = new RewriteAction(oToNode.getNodeValue(), oProcessing);
parseConditions(pNode, oAction.getConditions(), false, pConfig);
return oAction;
}