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();
}
}
}