Class ForceRequestHeaderValueRule
java.lang.Object
org.eclipse.jetty.rewrite.handler.Rule
org.eclipse.jetty.rewrite.handler.ForceRequestHeaderValueRule
-
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.Rule
_handling, _terminating
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionmatchAndApply
(String target, javax.servlet.http.HttpServletRequest httpServletRequest, javax.servlet.http.HttpServletResponse httpServletResponse) This method calls tests the rule against the request/response pair and if the Rule applies, then the rule's action is triggered.void
setForcedValue
(String forcedValue) void
setHeaderName
(String headerName) Methods inherited from class org.eclipse.jetty.rewrite.handler.Rule
isHandling, isTerminating, setHandling, setTerminating, toString
-
Constructor Details
-
ForceRequestHeaderValueRule
public ForceRequestHeaderValueRule()
-
-
Method Details
-
getHeaderName
-
setHeaderName
-
getForcedValue
-
setForcedValue
-
matchAndApply
public String matchAndApply(String target, javax.servlet.http.HttpServletRequest httpServletRequest, javax.servlet.http.HttpServletResponse httpServletResponse) 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 classRule
- Parameters:
target
- The target of the requesthttpServletRequest
- the requesthttpServletResponse
- the response- Returns:
- The new target if the rule has matched, else null
- Throws:
IOException
- if unable to match the rule
-