org.mortbay.jetty.handler.rewrite
public class RewriteRegexRule extends RegexRule
_handling, _terminating| Constructor and Description |
|---|
RewriteRegexRule() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
apply(java.lang.String target,
HttpServletRequest request,
HttpServletResponse response,
java.util.regex.Matcher matcher)
Apply this rule to the request/response pair.
|
void |
setReplacement(java.lang.String replacement)
Whenever a match is found, it replaces with this value.
|
java.lang.String |
toString()
Returns the replacement string.
|
getRegex, matchAndApply, setRegexisHandling, isTerminating, setHandling, setTerminatingpublic void setReplacement(java.lang.String replacement)
replacement - the replacement string.public java.lang.String apply(java.lang.String target,
HttpServletRequest request,
HttpServletResponse response,
java.util.regex.Matcher matcher)
throws java.io.IOException
RegexRuleRegexRule.matchAndApply(String, HttpServletRequest, HttpServletResponse) if the regex matches.apply in class RegexRuletarget - field to attempt matchrequest - request objectresponse - response objectmatcher - The Regex matcher that matched the request (with capture groups available for replacement).java.io.IOException - exceptions dealing with operating on request or response objectsCopyright © 2009 Mortbay Consulting Pty. Ltd. All Rights Reserved.