Package org.fenixedu.academic.domain.phd.alert

Examples of org.fenixedu.academic.domain.phd.alert.PhdAlertMessage.markAsUnread()


    public ActionForward markAlertMessageAsUnread(ActionMapping mapping, ActionForm form, HttpServletRequest request,
            HttpServletResponse response) throws Exception {

        PhdAlertMessage alertMessage = getAlertMessage(request);
        alertMessage.markAsUnread();

        Person loggedPerson = AccessControl.getPerson();
        boolean global = Boolean.valueOf((String) getFromRequest(request, "global"));
        boolean unread = Boolean.valueOf((String) getFromRequest(request, "unread"));
        boolean archive = Boolean.valueOf((String) getFromRequest(request, "archive"));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.