Class OrEvaluator
- java.lang.Object
-
- org.apache.synapse.commons.evaluators.OrEvaluator
-
- All Implemented Interfaces:
Evaluator
public class OrEvaluator extends Object implements Evaluator
This encapsulates two or more boolean expressions. This acts as the "or" boolean operator. It executes all the boolean expressions and apply the boolean OR operator and return the result of this boolean operation.<or> two or more evaluators </or>
-
-
Constructor Summary
Constructors Constructor Description OrEvaluator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanevaluate(EvaluatorContext context)Evaluate a boolean expressionEvaluator[]getEvaluators()StringgetName()Name of the evaluatorvoidsetEvaluators(Evaluator[] evaluators)
-
-
-
Method Detail
-
evaluate
public boolean evaluate(EvaluatorContext context) throws EvaluatorException
Description copied from interface:EvaluatorEvaluate a boolean expression- Specified by:
evaluatein interfaceEvaluator- Parameters:
context- hold the information about the HTTP request- Returns:
- result of evaluating the boolean expression
- Throws:
EvaluatorException- if an error occurs while evaluating the HTTP request
-
setEvaluators
public void setEvaluators(Evaluator[] evaluators)
-
getEvaluators
public Evaluator[] getEvaluators()
-
-