public ActionForward showTable(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request,
HttpServletResponse response) throws Exception {
final Student student = getStudent(request);
if (student != null) {
final StudentCurricularPlanEquivalencePlan studentCurricularPlanEquivalencePlan =
getStudentCurricularPlanEquivalencePlan(request, student);
if (studentCurricularPlanEquivalencePlan != null) {
request.setAttribute("studentCurricularPlanEquivalencePlan", studentCurricularPlanEquivalencePlan);
final DegreeCurricularPlan degreeCurricularPlan =
(DegreeCurricularPlan) request.getAttribute("selectedDegreeCurricularPlan");
final CurriculumModule curriculumModule = getCurriculumModule(request);
request.setAttribute("equivalencePlanEntryWrappers", studentCurricularPlanEquivalencePlan
.getEquivalencePlanEntryWrappers(degreeCurricularPlan, curriculumModule));
}
}
return mapping.findForward("showPlan");
}