Interface RuleConditionDefinitionService
-
- All Known Implementing Classes:
DefaultRuleConditionDefinitionService
public interface RuleConditionDefinitionServiceThe interface provides with method for retrieving rule condition definitions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<RuleConditionDefinitionModel>getAllRuleConditionDefinitions()Finds List ofRuleConditionDefinitionModels.java.util.List<RuleConditionDefinitionModel>getRuleConditionDefinitionsForRuleType(java.lang.Class<?> ruleType)Finds List ofRuleConditionDefinitionModels for given rule type.
-
-
-
Method Detail
-
getAllRuleConditionDefinitions
java.util.List<RuleConditionDefinitionModel> getAllRuleConditionDefinitions()
Finds List ofRuleConditionDefinitionModels.- Returns:
- List of
RuleConditionDefinitionModels.
-
getRuleConditionDefinitionsForRuleType
java.util.List<RuleConditionDefinitionModel> getRuleConditionDefinitionsForRuleType(java.lang.Class<?> ruleType)
Finds List ofRuleConditionDefinitionModels for given rule type.- Parameters:
ruleType- - type of rule- Returns:
- List of
RuleConditionDefinitionModels.
-
-