}
public ActionForward viewSchedule(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response) throws Exception {
InfoClass infoClass = (InfoClass) request.getAttribute(PresentationConstants.CLASS_VIEW);
// Fill out the form with the name of the class
DynaActionForm classForm = (DynaActionForm) form;
classForm.set("className", infoClass.getNome());
request.setAttribute("className", infoClass.getNome());
// Place list of lessons in request
/** InfoLesson List */
List<InfoLessonInstanceAggregation> lessonList = LerAulasDeTurma.run(infoClass);