Interface ResponseRuleApplicable
-
- All Known Implementing Classes:
ChooseWhenRule,ExceptionThrownRule,ResponseRule,TransletRule
public interface ResponseRuleApplicableThe Interface ResponseRuleApplicable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResponseapplyResponseRule(DispatchRule dispatchRule)Apply the dispatch rule to the response rule.ResponseapplyResponseRule(ForwardRule forwardRule)Apply the forward rule to the response rule.ResponseapplyResponseRule(RedirectRule redirectRule)Apply the redirect rule to the response rule.ResponseapplyResponseRule(TransformRule transformRule)Apply the transform rule to the response rule.
-
-
-
Method Detail
-
applyResponseRule
Response applyResponseRule(TransformRule transformRule)
Apply the transform rule to the response rule.- Parameters:
transformRule- the transform rule- Returns:
- the response
-
applyResponseRule
Response applyResponseRule(DispatchRule dispatchRule)
Apply the dispatch rule to the response rule.- Parameters:
dispatchRule- the dispatch rule- Returns:
- the response
-
applyResponseRule
Response applyResponseRule(ForwardRule forwardRule)
Apply the forward rule to the response rule.- Parameters:
forwardRule- the forward rule- Returns:
- the response
-
applyResponseRule
Response applyResponseRule(RedirectRule redirectRule)
Apply the redirect rule to the response rule.- Parameters:
redirectRule- the redirect rule- Returns:
- the response
-
-