Interface RuleActionDefinitionService
-
- All Known Implementing Classes:
DefaultRuleActionDefinitionService
public interface RuleActionDefinitionServiceThe interface provides with method for fetching all rule action definitions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<RuleActionDefinitionModel>getAllRuleActionDefinitions()Finds List ofRuleActionDefinitionModels.java.util.List<RuleActionDefinitionModel>getRuleActionDefinitionsForRuleType(java.lang.Class<?> ruleType)Finds List ofRuleActionDefinitionModels for given rule type.
-
-
-
Method Detail
-
getAllRuleActionDefinitions
java.util.List<RuleActionDefinitionModel> getAllRuleActionDefinitions()
Finds List ofRuleActionDefinitionModels.- Returns:
- List of
RuleActionDefinitionModels.
-
getRuleActionDefinitionsForRuleType
java.util.List<RuleActionDefinitionModel> getRuleActionDefinitionsForRuleType(java.lang.Class<?> ruleType)
Finds List ofRuleActionDefinitionModels for given rule type.- Parameters:
ruleType- - type of rule- Returns:
- List of
RuleActionDefinitionModels.
-
-