org.eclipse.jetty.rewrite.handler
Class RewritePatternRule
java.lang.Object
org.eclipse.jetty.rewrite.handler.Rule
org.eclipse.jetty.rewrite.handler.PatternRule
org.eclipse.jetty.rewrite.handler.RewritePatternRule
- All Implemented Interfaces:
- Rule.ApplyURI
public class RewritePatternRule
- extends PatternRule
- implements Rule.ApplyURI
Rewrite the URI by replacing the matched PathMap
path with a fixed string.
Nested classes/interfaces inherited from class org.eclipse.jetty.rewrite.handler.Rule |
Rule.ApplyURI |
Method Summary |
java.lang.String |
apply(java.lang.String target,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Apply the rule to the request |
void |
applyURI(Request request,
java.lang.String oldTarget,
java.lang.String newTarget)
|
void |
setReplacement(java.lang.String value)
Whenever a match is found, it replaces with this value. |
java.lang.String |
toString()
Returns the replacement string. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
RewritePatternRule
public RewritePatternRule()
setReplacement
public void setReplacement(java.lang.String value)
- Whenever a match is found, it replaces with this value.
- Parameters:
value
- the replacement string.
apply
public java.lang.String apply(java.lang.String target,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
throws java.io.IOException
- Description copied from class:
PatternRule
- Apply the rule to the request
- Specified by:
apply
in class PatternRule
- Parameters:
target
- field to attempt matchrequest
- request objectresponse
- response object
- Returns:
- The target (possible updated)
- Throws:
java.io.IOException
- exceptions dealing with operating on request or response objects
applyURI
public void applyURI(Request request,
java.lang.String oldTarget,
java.lang.String newTarget)
throws java.io.IOException
- Specified by:
applyURI
in interface Rule.ApplyURI
- Throws:
java.io.IOException
toString
public java.lang.String toString()
- Returns the replacement string.
- Overrides:
toString
in class PatternRule
Copyright © 2013. All Rights Reserved.