return mapping.findForward("showPhdProgram");
}
private void initPhdProgramConfig(HttpServletRequest request, PhdProgram program) {
final DegreeCurricularPlanRendererConfig config = new DegreeCurricularPlanRendererConfig();
config.setDegreeCurricularPlan(program.getDegree().getLastActiveDegreeCurricularPlan());
config.setExecutionInterval(ExecutionYear.readCurrentExecutionYear());
config.setOrganizeBy(DegreeCurricularPlanRendererConfig.OrganizeType.GROUPS);
config.setViewCurricularCourseUrl(getClass().getAnnotation(Mapping.class).path() + ".do");
config.addViewCurricularCourseUrlParameter("method", "manageEnrolments");
request.setAttribute("rendererConfig", config);
request.setAttribute("phdProgram", program);
}