href = this.href;
}
// If "forward" was specified, compute the "href" to forward to
else if (forward != null) {
ActionForwards forwards = (ActionForwards)
pageContext.getAttribute(Action.FORWARDS_KEY,
PageContext.APPLICATION_SCOPE);
if (forwards == null) {
JspException e = new JspException
(messages.getMessage("redirect.forwards"));
RequestUtils.saveException(pageContext, e);
throw e;
}
ActionForward forward = forwards.findForward(this.forward);
if (forward == null) {
JspException e = new JspException
(messages.getMessage("redirect.forward", this.forward));
RequestUtils.saveException(pageContext, e);
throw e;