Package de.arago.rike.commons.util

Examples of de.arago.rike.commons.util.PortletTitleWithMilestone


            filter.setDefaultOptions();

            filter.setMilestone(milestone);
            filter.setIsActive(true);

            event.setSessionAttribute("portletTitle", new PortletTitleWithMilestone(milestone, "Dependencies"));
        } catch(Exception ignore) {

        }
    }
View Full Code Here


                                     System.currentTimeMillis() + Long.parseLong(GlobalConfig.get(CHECK_PERIOD_SECONDS))*1000);
            data.setSessionAttribute("lastActivity", lastChange());
        }
        if(data.getSessionAttribute("portletTitle")==null) {
            String milestone = ((TaskListFilter)data.getSessionAttribute("taskListFilter")).getMilestone();
            data.setSessionAttribute("portletTitle", new PortletTitleWithMilestone(milestone, "Dependencies"));
        }

        return true;
    }
View Full Code Here

        if(!SecurityHelper.isLoggedIn(data.getUser())) {
            return false;
        }
        if(data.getSessionAttribute("portletTitle")==null) {
            data.setSessionAttribute("portletTitle",
                                     new PortletTitleWithMilestone(
                                         (String)data.getSessionAttribute("milestone"),
                                         getPortletConfig().getInitParameter("typeName")));
        }
        return true;
    }
View Full Code Here

    @Override
    public void execute(IEventWrapper event) {
        String milestone = (String)event.getEventAttribute("milestone");
        event.setSessionAttribute("milestone", milestone);
        event.setSessionAttribute("portletTitle",
                                  new PortletTitleWithMilestone(milestone, (String)event.getSessionAttribute("typeName")));
    }
View Full Code Here

TOP

Related Classes of de.arago.rike.commons.util.PortletTitleWithMilestone

Copyright © 2018 www.massapicom. 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.