}
} catch (Exception e) {
logger.error("[execute] Exception thrown.", e);
}
// Now we need to redirect to the ViewEntityChangeMOCHandler class.
ActionForward returnForward = mapping.findForward(returnStatus);
StringBuffer newPathBuffer = new StringBuffer();
newPathBuffer.append(returnForward.getPath());
newPathBuffer.append("?rowId=");
newPathBuffer.append(Integer.toString(contactID));
ActionForward newActionForward = new ActionForward();
newActionForward.setPath(newPathBuffer.toString());
newActionForward.setRedirect(returnForward.getRedirect());
newActionForward.setName(returnForward.getName());
return (newActionForward);
} // end of execute method