public HandyRuleWithForward forward(Object result, String targetPath) {
return this._forward(result, targetPath);
}
public HandyRuleWithForward forward(Object result, String targetPath, int status) {
MultiResultHolder mrh = new MultiResultHolder();
mrh.addResult(new HeaderInfoProvider(status));
mrh.addResult(targetPath);
return this._forward(result, mrh);
}