Class MsieSslRule
java.lang.Object
org.eclipse.jetty.rewrite.handler.Rule
org.eclipse.jetty.rewrite.handler.MsieSslRule
MSIE (Microsoft Internet Explorer) SSL Rule.
Disable keep alive for SSL from IE5 or IE6 on Windows 2000.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.eclipse.jetty.rewrite.handler.Rule
Rule.ApplyURI
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final int
private static final int
Fields inherited from class org.eclipse.jetty.rewrite.handler.Rule
_handling, _terminating
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionmatchAndApply
(String target, javax.servlet.http.HttpServletRequest request, javax.servlet.http.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.Methods inherited from class org.eclipse.jetty.rewrite.handler.Rule
isHandling, isTerminating, setHandling, setTerminating, toString
-
Field Details
-
IEv5
private static final int IEv5- See Also:
-
IEv6
private static final int IEv6- See Also:
-
__IE6_BadOS
-
-
Constructor Details
-
MsieSslRule
public MsieSslRule()
-
-
Method Details
-
matchAndApply
public String matchAndApply(String target, javax.servlet.http.HttpServletRequest request, javax.servlet.http.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 classRule
- Parameters:
target
- The target of the requestrequest
- the requestresponse
- the response- Returns:
- The new target if the rule has matched, else null
- Throws:
IOException
- if unable to match the rule
-