* @see net.urlrewriter.parsers.IRewriteConditionParser#parse(org.w3c.dom.Node)
*/
public IRewriteCondition parse(Node pNode) throws ConfigurationException {
Node oMethodNode = pNode.getAttributes().getNamedItem(Constants.ATTR_METHOD);
if (oMethodNode != null) {
return new MethodCondition(oMethodNode.getNodeValue());
}
return null;
}