};
protected final RegexRequestMatcher pattern;
protected String patternString;
public AbstractInterceptUrlUpdater(Element element) {
this.pattern = new RegexRequestMatcher(element.getAttributeValue("pattern"), element.getAttributeValue("httpMethod"),
Boolean.parseBoolean(element.getAttributeValue("caseInsensitive")));
this.patternString = element.getAttributeValue("pattern");
}