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.org.forgerock.opendj.config.server Server-side administration interface. -
-
Uses of Condition in org.forgerock.opendj.config
Methods in org.forgerock.opendj.config that return Condition Modifier and Type Method Description ConditionDeprecated. getIsEnabledCondition()Gets the isEnabledCondition of this deprecated definition.ConditionAggregationPropertyDefinition. getTargetIsEnabledCondition()Gets the condition which is used to determine if a referenced managed object is enabled.ConditionAggregationPropertyDefinition. 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 voidAggregationPropertyDefinition.Builder. setTargetIsEnabledCondition(Condition condition)Sets the condition which is used to determine if a referenced managed object is enabled.voidAggregationPropertyDefinition.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 Deprecated(AbstractManagedObjectDefinition<?,?> d, String propertyName, boolean forRemoval, com.forgerock.opendj.util.Version since, Condition isEnabledCondition)Public constructor.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 classContainsConditionA condition which evaluates totrueif and only if a property contains a particular value.classIsPresentConditionA condition which evaluates totrueif and only if a particular property has any values specified.classNotConditionA condition which evaluates totrueif the sub-condition isfalse, orfalseif the sub-condition istrue.classOrConditionA condition which evaluates tofalseif 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 ConditionConditions. FALSEA condition which always evaluates tofalse.static ConditionConditions. TRUEA condition which always evaluates totrue.Methods in org.forgerock.opendj.config.conditions that return Condition Modifier and Type Method Description static ConditionConditions. and(Condition... conditions)Creates a condition which evaluates totrueif and only if all of its sub-conditions aretrue.static ConditionConditions. contains(String propertyName, String propertyStringValue)Creates a condition which evaluates totrueif and only if a property contains a particular value.static ConditionConditions. implies(Condition premise, Condition implication)Creates a condition which evaluates tofalseif and only if the first sub-condition evaluates totrueand the second sub-condition evaluates tofalse.static ConditionConditions. isPresent(String propertyName)Creates a condition which evaluates totrueif and only if a particular property has any values specified.static ConditionConditions. not(Condition condition)Creates a condition which evaluates totrueif the sub-condition isfalse, orfalseif the sub-condition istrue.static ConditionConditions. or(Condition... conditions)Creates a condition which evaluates tofalseif 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 ConditionConditions. and(Condition... conditions)Creates a condition which evaluates totrueif and only if all of its sub-conditions aretrue.static ConditionConditions. implies(Condition premise, Condition implication)Creates a condition which evaluates tofalseif and only if the first sub-condition evaluates totrueand the second sub-condition evaluates tofalse.static ConditionConditions. not(Condition condition)Creates a condition which evaluates totrueif the sub-condition isfalse, orfalseif the sub-condition istrue.static ConditionConditions. or(Condition... conditions)Creates a condition which evaluates tofalseif and only if all of its sub-conditions arefalse. -
Uses of Condition in org.forgerock.opendj.config.server
Methods in org.forgerock.opendj.config.server with parameters of type Condition Modifier and Type Method Description booleanServerManagedObject. evaluate(Condition condition)Evaluates the provided condition against this managed object.
-