Package org.jayasoft.woj.portal.model

Examples of org.jayasoft.woj.portal.model.MasterStatistic


        request.getSession().setAttribute(Params.GENERAL.SESSION.IMG_LOCALE_SUFFIX, ext);
    }

    protected void retrieveModulesStats(HttpSession s) {
        if (s!=null) {
            MasterStatistic ms = (MasterStatistic)s.getAttribute(Params.GENERAL.SESSION.STATS_MODULES);
            if (ms == null) {
                ms = new MasterStatistic();
                s.setAttribute(Params.GENERAL.SESSION.STATS_MODULES, ms);
            }
            if (ms.isObsolete()) {
                ms.refresh();
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.jayasoft.woj.portal.model.MasterStatistic

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.