* @return the specified forward.
*/
protected ActionForward handleSuccess(ActionMapping mapping, ContextAdapter context, String forwardName,
String parameter) {
String newPath = mapping.findForward(forwardName).getPath() + parameter;
ActionForward forward = new RedirectingActionForward(newPath);
return this.handleSuccess(forward, context, forwardName);
}