Java tutorial
/** * Copyright 2002 Instituto Superior Tcnico * * This file is part of FenixEdu Core. * * FenixEdu Core is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * FenixEdu Core is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with FenixEdu Core. If not, see <http://www.gnu.org/licenses/>. */ /** * Dec 13, 2005 */ package net.sourceforge.fenixedu.presentationTier.Action.teacher.credits; import java.util.Iterator; import java.util.List; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import net.sourceforge.fenixedu.applicationTier.Servico.credits.ReadAllTeacherCredits; import net.sourceforge.fenixedu.commons.OrderedIterator; import net.sourceforge.fenixedu.domain.Teacher; import net.sourceforge.fenixedu.domain.credits.CreditLine; import net.sourceforge.fenixedu.presentationTier.Action.base.FenixAction; import org.apache.commons.beanutils.BeanComparator; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward; import org.apache.struts.action.ActionMapping; import org.fenixedu.bennu.core.domain.User; import org.fenixedu.bennu.core.security.Authenticate; /** * @author Ricardo Rodrigues * */ public class ShowAllTeacherCreditsResumeAction extends FenixAction { @Override public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { User userView = Authenticate.getUser(); Teacher teacher = userView.getPerson().getTeacher(); request.setAttribute("teacher", teacher); List<CreditLine> creditsLines = (List) ReadAllTeacherCredits.run(teacher.getExternalId()); request.setAttribute("creditsLinesSize", creditsLines.size()); BeanComparator dateComparator = new BeanComparator("executionPeriod.beginDate"); Iterator orderedCreditsLines = new OrderedIterator(creditsLines.iterator(), dateComparator); request.setAttribute("creditsLines", orderedCreditsLines); return mapping.findForward("show-all-credits-resume"); } }