Package | Description |
---|---|
org.opends.server.admin |
Common administration classes.
|
org.opends.server.admin.condition |
Logical conditions for defining constraints.
|
Modifier and Type | Method and Description |
---|---|
Condition |
AggregationPropertyDefinition.getTargetIsEnabledCondition()
Gets the condition which is used to determine if a referenced
managed object is enabled.
|
Condition |
AggregationPropertyDefinition.getTargetNeedsEnablingCondition()
Gets the condition which is used to determine whether or not
referenced managed objects need to be enabled.
|
Modifier and Type | Method and Description |
---|---|
void |
AggregationPropertyDefinition.Builder.setTargetIsEnabledCondition(Condition condition)
Sets the condition which is used to determine if a referenced
managed object is enabled.
|
void |
AggregationPropertyDefinition.Builder.setTargetNeedsEnablingCondition(Condition condition)
Sets the condition which is used to determine whether or not
referenced managed objects need to be enabled.
|
Constructor and Description |
---|
GenericConstraint(AbstractManagedObjectDefinition<?,?> definition,
int id,
Condition condition)
Creates a new generic constraint.
|
Modifier and Type | Class and Description |
---|---|
class |
ANDCondition
A condition which evaluates to
true if and only if
all of its sub-conditions are true . |
class |
ContainsCondition
A condition which evaluates to
true if and only if a
property contains a particular value. |
class |
IsPresentCondition
A condition which evaluates to
true if and only if a
particular property has any values specified. |
class |
NOTCondition
A condition which evaluates to
true if the
sub-condition is false , or false if
the sub-condition is true . |
class |
ORCondition
A condition which evaluates to
false if and only if
all of its sub-conditions are false . |
Modifier and Type | Field and Description |
---|---|
static Condition |
Conditions.FALSE
A condition which always evaluates to
false . |
static Condition |
Conditions.TRUE
A condition which always evaluates to
true . |
Modifier and Type | Method and Description |
---|---|
static Condition |
Conditions.and(Condition... conditions)
Creates a condition which evaluates to
true if and
only if all of its sub-conditions are true . |
static Condition |
Conditions.contains(String propertyName,
String propertyStringValue)
Creates a condition which evaluates to
true if and
only if a property contains a particular value. |
static Condition |
Conditions.implies(Condition premise,
Condition implication)
Creates a condition which evaluates to
false if
and only if the first sub-condition evaluates to
true and the second sub-condition evaluates to
false . |
static Condition |
Conditions.isPresent(String propertyName)
Creates a condition which evaluates to
true if and
only if a particular property has any values specified. |
static Condition |
Conditions.not(Condition condition)
Creates a condition which evaluates to
true if the
sub-condition is false , or false
if the sub-condition is true . |
static Condition |
Conditions.or(Condition... conditions)
Creates a condition which evaluates to
false if
and only if all of its sub-conditions are false . |
Modifier and Type | Method and Description |
---|---|
static Condition |
Conditions.and(Condition... conditions)
Creates a condition which evaluates to
true if and
only if all of its sub-conditions are true . |
static Condition |
Conditions.implies(Condition premise,
Condition implication)
Creates a condition which evaluates to
false if
and only if the first sub-condition evaluates to
true and the second sub-condition evaluates to
false . |
static Condition |
Conditions.not(Condition condition)
Creates a condition which evaluates to
true if the
sub-condition is false , or false
if the sub-condition is true . |
static Condition |
Conditions.or(Condition... conditions)
Creates a condition which evaluates to
false if
and only if all of its sub-conditions are false . |
Constructor and Description |
---|
ANDCondition(Condition... conditions)
Creates a new logical AND condition with the provided
sub-conditions.
|
NOTCondition(Condition condition)
Creates a new logical NOT condition with the provided
sub-condition.
|
ORCondition(Condition... conditions)
Creates a new logical OR condition with the provided
sub-conditions.
|
Copyright © 2010-2016 ForgeRock AS. All Rights Reserved.