Class CookiePatternRule
- java.lang.Object
-
- org.eclipse.jetty.rewrite.handler.Rule
-
- org.eclipse.jetty.rewrite.handler.PatternRule
-
- org.eclipse.jetty.rewrite.handler.CookiePatternRule
-
public class CookiePatternRule extends PatternRule
Sets the cookie in the response whenever the rule finds a match.- See Also:
Cookie
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.eclipse.jetty.rewrite.handler.Rule
Rule.ApplyURI
-
-
Field Summary
-
Fields inherited from class org.eclipse.jetty.rewrite.handler.PatternRule
_pattern
-
Fields inherited from class org.eclipse.jetty.rewrite.handler.Rule
_handling, _terminating
-
-
Constructor Summary
Constructors Constructor Description CookiePatternRule()CookiePatternRule(java.lang.String pattern, java.lang.String name, java.lang.String value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringapply(java.lang.String target, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)Apply the rule to the requestvoidsetName(java.lang.String name)Assigns the cookie name.voidsetValue(java.lang.String value)Assigns the cookie value.java.lang.StringtoString()Returns the cookie contents.-
Methods inherited from class org.eclipse.jetty.rewrite.handler.PatternRule
getPattern, matchAndApply, setPattern
-
Methods inherited from class org.eclipse.jetty.rewrite.handler.Rule
isHandling, isTerminating, setHandling, setTerminating
-
-
-
-
Method Detail
-
setName
public void setName(java.lang.String name)
Assigns the cookie name.- Parameters:
name- aStringspecifying the name of the cookie.
-
setValue
public void setValue(java.lang.String value)
Assigns the cookie value.- Parameters:
value- aStringspecifying the value of the cookie- See Also:
Cookie.setValue(String)
-
apply
public java.lang.String apply(java.lang.String target, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws java.io.IOExceptionDescription copied from class:PatternRuleApply the rule to the request- Specified by:
applyin classPatternRule- 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
-
toString
public java.lang.String toString()
Returns the cookie contents.- Overrides:
toStringin classPatternRule
-
-