Interface ActionRuleApplicable
-
- All Known Implementing Classes:
ActionList,AspectAdviceRule,ExceptionThrownRule,TransletRule
public interface ActionRuleApplicableThe Interface ActionRuleApplicable.- Since:
- 2011. 2. 21.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidapplyActionRule(BeanActionRule beanActionRule)Adds the bean action.voidapplyActionRule(EchoActionRule echoActionRule)Adds the echo action.voidapplyActionRule(HeadingActionRule headingActionRule)Adds the heading action.voidapplyActionRule(IncludeActionRule includeActionRule)Adds the process-call action.voidapplyActionRule(MethodActionRule methodActionRule)Adds the method action.
-
-
-
Method Detail
-
applyActionRule
void applyActionRule(BeanActionRule beanActionRule)
Adds the bean action.- Parameters:
beanActionRule- the bean action rule
-
applyActionRule
void applyActionRule(MethodActionRule methodActionRule)
Adds the method action.- Parameters:
methodActionRule- the bean action rule
-
applyActionRule
void applyActionRule(IncludeActionRule includeActionRule)
Adds the process-call action.- Parameters:
includeActionRule- the process call action rule
-
applyActionRule
void applyActionRule(EchoActionRule echoActionRule)
Adds the echo action.- Parameters:
echoActionRule- the echo action rule
-
applyActionRule
void applyActionRule(HeadingActionRule headingActionRule)
Adds the heading action.- Parameters:
headingActionRule- the heading action rule
-
-