Package | Description |
---|---|
org.dogtagpki.legacy.core.policy | |
org.dogtagpki.legacy.policy | |
org.dogtagpki.legacy.server.policy |
Modifier and Type | Class and Description |
---|---|
class |
AndExpression
This class represents an expression of the form
|
class |
OrExpression
This class represents an Or expression of the form
(var1 op val1 OR var2 op val2).
|
class |
SimpleExpression
This class represents an expression of the form var = val,
var != val, var < val, var > val, var <= val, var >= val.
|
Modifier and Type | Field and Description |
---|---|
static java.util.Hashtable<java.lang.String,IExpression> |
GenericPolicyProcessor.DEF_UNDELETABLE_POLICIES |
Modifier and Type | Method and Description |
---|---|
static IExpression |
SimpleExpression.parse(java.lang.String input) |
static IExpression |
PolicyPredicateParser.parse(java.lang.String predicateExpression)
Parse the predicate expression and return a vector of expressions.
|
Constructor and Description |
---|
AndExpression(IExpression exp1,
IExpression exp2) |
OrExpression(IExpression exp1,
IExpression exp2) |
Modifier and Type | Method and Description |
---|---|
IExpression |
IPolicyRule.getPredicate()
Returns the predicate expression for the rule.
|
IExpression |
IPolicyPredicateParser.parse(java.lang.String predicateExpression)
Parse the predicate expression and return a vector of expressions.
|
Modifier and Type | Method and Description |
---|---|
void |
IPolicyRule.setPredicate(IExpression exp)
Sets a predicate expression for rule matching.
|
Modifier and Type | Field and Description |
---|---|
protected IExpression |
APolicyRule.mFilterExp |
Modifier and Type | Method and Description |
---|---|
IExpression |
APolicyRule.getPredicate()
Returns the predicate expression for the rule.
|
Modifier and Type | Method and Description |
---|---|
void |
APolicyRule.setPredicate(IExpression exp)
Sets a predicate expression for rule matching.
|