Package org.alfresco.service.cmr.action
Interface ActionCondition
-
- All Superinterfaces:
ParameterizedItem
- All Known Subinterfaces:
CompositeActionCondition
- All Known Implementing Classes:
ActionConditionImpl,CompositeActionConditionImpl
@AlfrescoPublicApi public interface ActionCondition extends ParameterizedItem
Rule condition interface- Author:
- Roy Wetherall
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetActionConditionDefinitionName()Get the action condition definition namebooleangetInvertCondition()Indicates whether the condition result should be inverted.voidsetInvertCondition(boolean invertCondition)Set whether the condition result should be inverted.-
Methods inherited from interface org.alfresco.service.cmr.action.ParameterizedItem
getId, getParameterValue, getParameterValues, setParameterValue, setParameterValues
-
-
-
-
Method Detail
-
getActionConditionDefinitionName
java.lang.String getActionConditionDefinitionName()
Get the action condition definition name
-
setInvertCondition
void setInvertCondition(boolean invertCondition)
Set whether the condition result should be inverted.This is achieved by applying the NOT logical operator to the result.
The default value is false.
- Parameters:
invertCondition- true indicates that the result of the condition is inverted, false otherwise.
-
getInvertCondition
boolean getInvertCondition()
Indicates whether the condition result should be inverted.This is achieved by applying the NOT logical operator to the result.
The default value is false.
- Returns:
- true indicates that the result of the condition is inverted, false otherwise
-
-