See: Description
| Class | Description |
|---|---|
| AtLeast |
An execution policy rule that encapsulates a test of type property_value >= value.
|
| AtMost |
An execution policy rule that encapsulates a test of type property_value <= value.
|
| BetweenEE |
An execution policy rule that encapsulates a test of type a < property_value < b.
|
| BetweenEI |
An execution policy rule that encapsulates a test of type a < property_value <= b.
|
| BetweenIE |
An execution policy rule that encapsulates a test of type a <= property_value < b.
|
| BetweenII |
An execution policy rule that encapsulates a test of type a <= property_value <= b.
|
| Contains |
An execution policy rule that encapsulates a test of type property_value contains string.
|
| CustomPolicy |
Abstract superclass for all user-defined policies.
|
| Equal |
An execution policy rule that encapsulates a test of type property_value == value.
|
| ExecutionPolicy |
Interface for all execution policy implementations.
|
| ExecutionPolicy.AndRule |
An execution policy that realizes a logical "AND" combination of multiple policies specified as operands.
|
| ExecutionPolicy.LogicalRule |
An execution policy that realizes a binary logical combination of the policies specified as operands.
|
| ExecutionPolicy.NotRule |
An execution policy that realizes the negation of a policy specified as operand.
|
| ExecutionPolicy.OrRule |
An execution policy that realizes a logical "OR" combination of multiple policies specified as operands.
|
| ExecutionPolicy.XorRule |
An execution policy that realizes a logical "XOR" combination of multiple policies specified as operands.
|
| LessThan |
An execution policy rule that encapsulates a test of type property_value < value.
|
| MoreThan |
An execution policy rule that encapsulates a test of type property_value > value.
|
| OneOf |
An execution policy rule that encapsulates a test of type property_value is one of [value1, ··· , valueN].
|
| PolicyBuilder |
Instances of this class build an execution policy graph, based on a policy
descriptor parsed from an XML document.
|
| PolicyDescriptor |
Intermediary data structure generated by the xml parser that makes the actual building
of an execution policy easier.
|
| PolicyParser |
This class is a parser for XML Execution Policy documents.
|
| PolicyRuleTest |
Simple test of an execution policy.
|
| RegExp |
An execution policy rule that encapsulates a test of type property_value matches regular_expression.
|
Copyright © 2005-2012 JPPF Team.