Class VoidRelativeDisableCondition
java.lang.Object
org.ametys.runtime.model.disableconditions.AbstractRelativeDisableCondition
org.ametys.runtime.model.disableconditions.VoidRelativeDisableCondition
- All Implemented Interfaces:
DisableCondition
Disable condition referencing a relative model item. The condition can not be evaluated on a stored object. It can evaluated only on a Map of values
-
Nested Class Summary
Nested classes/interfaces inherited from class org.ametys.runtime.model.disableconditions.AbstractRelativeDisableCondition
AbstractRelativeDisableCondition.RelativeDefinitionAndValue
Nested classes/interfaces inherited from interface org.ametys.runtime.model.disableconditions.DisableCondition
DisableCondition.OPERATOR
-
Field Summary
Fields inherited from class org.ametys.runtime.model.disableconditions.AbstractRelativeDisableCondition
_id, _name, _operator, _value
Fields inherited from interface org.ametys.runtime.model.disableconditions.DisableCondition
EXTERNAL_CONDITION_ID_PREFIX
-
Constructor Summary
ConstructorsConstructorDescriptionVoidRelativeDisableCondition
(String name, DisableCondition.OPERATOR operator, String value) Creates a disable condition -
Method Summary
Methods inherited from class org.ametys.runtime.model.disableconditions.AbstractRelativeDisableCondition
_emptyStringToNull, _getConditionDefinitionAndValue, checkModelItemPathSegment, containsRelativeValue, evaluate, evaluateDisableConditionValue, getAllModelItemsInPath, getId, getModelItem, getName, getOperator, getRelativeValueFromMap, getValue, init
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.ametys.runtime.model.disableconditions.DisableCondition
isExternal
-
Constructor Details
-
VoidRelativeDisableCondition
Creates a disable condition- Parameters:
name
- The condition nameoperator
- comparison operator of the condition ('eq'...)value
- value to compare to
-
-
Method Details
-
getStoredRelativeValue
protected <T> Object getStoredRelativeValue(String conditionDataPath, Optional<String> oldConditionDataPath, T object, Map<String, Object> contextualParameters) Description copied from class:AbstractRelativeDisableCondition
Retrieves the condition value from data stored in the given object- Specified by:
getStoredRelativeValue
in classAbstractRelativeDisableCondition
- Type Parameters:
T
- Type of object holding the data to evaluate- Parameters:
conditionDataPath
- the absolute data path of the conditionoldConditionDataPath
- the absolute old data path of the conditionobject
- the object holding the data to evaluate and the condition valuecontextualParameters
- the contextual parameters- Returns:
- the condition value from data stored in the object
-