Package | Description |
---|---|
org.forgerock.opendj.config |
Common administration classes.
|
org.forgerock.opendj.config.conditions |
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 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
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 |
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 . |
Copyright 2010-2018 ForgeRock AS.