PageContext.APPLICATION_SCOPE);
if (collection != null)
object = collection.findFormBean(formBean);
} else if (forward != null) {
selector = forward;
ActionForwards collection = (ActionForwards)
pageContext.getAttribute(Action.FORWARDS_KEY,
PageContext.APPLICATION_SCOPE);
if (collection != null)
object = collection.findForward(forward);
} else if (mapping != null) {
selector = mapping;
ActionMappings collection = (ActionMappings)
pageContext.getAttribute(Action.MAPPINGS_KEY,
PageContext.APPLICATION_SCOPE);
if (collection != null)
object = collection.findMapping(mapping);
}
if (object == null) {
JspException e = new JspException
(messages.getMessage("struts.missing", selector));
RequestUtils.saveException(pageContext, e);