Class HttpCondition
java.lang.Object
org.ocpsoft.rewrite.config.DefaultConditionBuilder
org.ocpsoft.rewrite.servlet.config.HttpCondition
- All Implemented Interfaces:
Condition,ConditionBuilder
A condition that only applies to
HttpServletRewrite events.- Author:
- Lincoln Baxter, III
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanevaluate(Rewrite event, EvaluationContext context) abstract booleanevaluateHttp(HttpServletRewrite event, EvaluationContext context) Evaluate thisConditionagainst the givenHttpServletRewriteevent.Methods inherited from class org.ocpsoft.rewrite.config.DefaultConditionBuilder
and, andNot, or, orNot
-
Constructor Details
-
HttpCondition
public HttpCondition()
-
-
Method Details
-
evaluateHttp
Evaluate thisConditionagainst the givenHttpServletRewriteevent. If this condition does not apply to the given event, it must returnfalse. If the condition applies and is satisfied, returntrue. -
evaluate
-