@EntryPoint
public ActionForward viewProjectsWithOnlineSubmission(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response) throws FenixActionException, FenixServiceException {
Student student = getUserView(request).getPerson().getStudent();
ManageStudentStatuteBean bean = getRenderedObject("studentBean");
if (bean == null) {
bean = new ManageStudentStatuteBean(student);
}
request.setAttribute("studentBean", bean);
request.setAttribute("attends", student.getAttendsForExecutionPeriod(bean.getExecutionPeriod()));
return mapping.findForward("viewProjectsWithOnlineSubmission");
}