org.eclipse.jetty.rewrite.handler
Class PatternRule

java.lang.Object
  extended by org.eclipse.jetty.rewrite.handler.Rule
      extended by org.eclipse.jetty.rewrite.handler.PatternRule
Direct Known Subclasses:
CookiePatternRule, HeaderPatternRule, RedirectPatternRule, ResponsePatternRule, RewritePatternRule

public abstract class PatternRule
extends Rule

Abstract rule that use a PathMap for pattern matching. It uses the servlet pattern syntax.


Field Summary
protected  String _pattern
           
 
Fields inherited from class org.eclipse.jetty.rewrite.handler.Rule
_handling, _terminating
 
Constructor Summary
PatternRule()
           
 
Method Summary
protected abstract  String apply(String target, HttpServletRequest request, HttpServletResponse response)
          Apply the rule to the request
 String getPattern()
           
 String matchAndApply(String target, HttpServletRequest request, HttpServletResponse response)
          This method calls tests the rule against the request/response pair and if the Rule applies, then the rule's action is triggered.
 void setPattern(String pattern)
          Sets the rule pattern.
 String toString()
          Returns the rule pattern.
 
Methods inherited from class org.eclipse.jetty.rewrite.handler.Rule
isHandling, isTerminating, setHandling, setTerminating
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

_pattern

protected String _pattern
Constructor Detail

PatternRule

public PatternRule()
Method Detail

getPattern

public String getPattern()

setPattern

public void setPattern(String pattern)
Sets the rule pattern.

Parameters:
pattern - the pattern

matchAndApply

public String matchAndApply(String target,
                            HttpServletRequest request,
                            HttpServletResponse response)
                     throws IOException
Description copied from class: Rule
This method calls tests the rule against the request/response pair and if the Rule applies, then the rule's action is triggered.

Specified by:
matchAndApply in class Rule
Parameters:
target - The target of the request
Returns:
The new target if the rule has matched, else null
Throws:
IOException - TODO

apply

protected abstract String apply(String target,
                                HttpServletRequest request,
                                HttpServletResponse response)
                         throws IOException
Apply the rule to the request

Parameters:
target - field to attempt match
request - request object
response - response object
Returns:
The target (possible updated)
Throws:
IOException - exceptions dealing with operating on request or response objects

toString

public String toString()
Returns the rule pattern.

Overrides:
toString in class Rule


Copyright © 1995-2011 Mort Bay Consulting. All Rights Reserved.