Uses of Interface
org.forgerock.opendj.config.conditions.Condition
-
Packages that use Condition Package Description org.forgerock.opendj.config Common administration classes.org.forgerock.opendj.config.conditions Logical conditions for defining constraints. -
-
Uses of Condition in org.forgerock.opendj.config
Methods in org.forgerock.opendj.config that return Condition Modifier and Type Method 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.Methods in org.forgerock.opendj.config with parameters of type Condition Modifier and Type Method 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.Constructors in org.forgerock.opendj.config with parameters of type Condition Constructor Description GenericConstraint(AbstractManagedObjectDefinition<?,?> definition, int id, Condition condition)
Creates a new generic constraint. -
Uses of Condition in org.forgerock.opendj.config.conditions
Classes in org.forgerock.opendj.config.conditions that implement Condition Modifier and Type Class Description class
ContainsCondition
A condition which evaluates totrue
if and only if a property contains a particular value.class
IsPresentCondition
A condition which evaluates totrue
if and only if a particular property has any values specified.class
NotCondition
A condition which evaluates totrue
if the sub-condition isfalse
, orfalse
if the sub-condition istrue
.class
OrCondition
A condition which evaluates tofalse
if and only if all of its sub-conditions arefalse
.Fields in org.forgerock.opendj.config.conditions declared as Condition Modifier and Type Field Description static Condition
Conditions. FALSE
A condition which always evaluates tofalse
.static Condition
Conditions. TRUE
A condition which always evaluates totrue
.Methods in org.forgerock.opendj.config.conditions that return Condition Modifier and Type Method Description static Condition
Conditions. and(Condition... conditions)
Creates a condition which evaluates totrue
if and only if all of its sub-conditions aretrue
.static Condition
Conditions. contains(String propertyName, String propertyStringValue)
Creates a condition which evaluates totrue
if and only if a property contains a particular value.static Condition
Conditions. implies(Condition premise, Condition implication)
Creates a condition which evaluates tofalse
if and only if the first sub-condition evaluates totrue
and the second sub-condition evaluates tofalse
.static Condition
Conditions. isPresent(String propertyName)
Creates a condition which evaluates totrue
if and only if a particular property has any values specified.static Condition
Conditions. not(Condition condition)
Creates a condition which evaluates totrue
if the sub-condition isfalse
, orfalse
if the sub-condition istrue
.static Condition
Conditions. or(Condition... conditions)
Creates a condition which evaluates tofalse
if and only if all of its sub-conditions arefalse
.Methods in org.forgerock.opendj.config.conditions with parameters of type Condition Modifier and Type Method Description static Condition
Conditions. and(Condition... conditions)
Creates a condition which evaluates totrue
if and only if all of its sub-conditions aretrue
.static Condition
Conditions. implies(Condition premise, Condition implication)
Creates a condition which evaluates tofalse
if and only if the first sub-condition evaluates totrue
and the second sub-condition evaluates tofalse
.static Condition
Conditions. not(Condition condition)
Creates a condition which evaluates totrue
if the sub-condition isfalse
, orfalse
if the sub-condition istrue
.static Condition
Conditions. or(Condition... conditions)
Creates a condition which evaluates tofalse
if and only if all of its sub-conditions arefalse
.
-