Modifier and Type | Class and Description |
---|---|
class |
AndEvaluator
This encapsulates two or more boolean conditions.
|
class |
EqualEvaluator
Try to see weather a part of the HTTP request is equal to the value provided.
|
class |
MatchEvaluator
This evaluator uses regular expressions to match a given HTTP request.
|
class |
NotEvaluator
This encapsulates a boolean expression.
|
class |
OrEvaluator
This encapsulates two or more boolean expressions.
|
Modifier and Type | Method and Description |
---|---|
Evaluator |
Condition.getEvaluator() |
Evaluator |
NotEvaluator.getEvaluator() |
Evaluator[] |
OrEvaluator.getEvaluators() |
Evaluator[] |
AndEvaluator.getEvaluators() |
Modifier and Type | Method and Description |
---|---|
void |
Condition.setEvaluator(Evaluator evaluator) |
void |
NotEvaluator.setEvaluator(Evaluator evaluator) |
void |
OrEvaluator.setEvaluators(Evaluator[] evaluators) |
void |
AndEvaluator.setEvaluators(Evaluator[] evaluators) |
Modifier and Type | Method and Description |
---|---|
Evaluator |
EvaluatorFactory.create(org.apache.axiom.om.OMElement e)
Create an evalautor from the given XML configuration
|
Evaluator |
EqualFactory.create(org.apache.axiom.om.OMElement e) |
Evaluator |
OrFactory.create(org.apache.axiom.om.OMElement e) |
Evaluator |
AndFactory.create(org.apache.axiom.om.OMElement e) |
Evaluator |
NotFactory.create(org.apache.axiom.om.OMElement e) |
Evaluator |
MatchFactory.create(org.apache.axiom.om.OMElement e) |
Evaluator |
EvaluatorFactoryFinder.getEvaluator(org.apache.axiom.om.OMElement elem)
Retun an
EvaluatorFactory for a given Evaluator name. |
Modifier and Type | Method and Description |
---|---|
org.apache.axiom.om.OMElement |
MatchSerializer.serialize(org.apache.axiom.om.OMElement parent,
Evaluator evaluator) |
org.apache.axiom.om.OMElement |
OrSerializer.serialize(org.apache.axiom.om.OMElement parent,
Evaluator evaluator) |
org.apache.axiom.om.OMElement |
EvaluatorSerializer.serialize(org.apache.axiom.om.OMElement parent,
Evaluator evaluator)
Serialze an Evaluator configuration to a XML element.
|
org.apache.axiom.om.OMElement |
EqualSerializer.serialize(org.apache.axiom.om.OMElement parent,
Evaluator evaluator) |
org.apache.axiom.om.OMElement |
AndSerializer.serialize(org.apache.axiom.om.OMElement parent,
Evaluator evaluator) |
org.apache.axiom.om.OMElement |
NotSerializer.serialize(org.apache.axiom.om.OMElement parent,
Evaluator evaluator) |
protected void |
AbstractEvaluatorSerializer.serializeChild(org.apache.axiom.om.OMElement parenet,
Evaluator child) |
protected void |
AbstractEvaluatorSerializer.serializeChildren(org.apache.axiom.om.OMElement parent,
Evaluator[] childEvaluators) |
Modifier and Type | Method and Description |
---|---|
Evaluator |
ConditionalRoute.getEvaluator() |
Modifier and Type | Method and Description |
---|---|
void |
ConditionalRoute.setEvaluator(Evaluator evaluator) |
Modifier and Type | Method and Description |
---|---|
Evaluator |
RewriteRule.getCondition() |
Modifier and Type | Method and Description |
---|---|
void |
RewriteRule.setCondition(Evaluator condition) |
Copyright © 2005-2017 Apache Software Foundation. All Rights Reserved.