use of org.mifos.application.admin.system.ShutdownManager in project head by mifos.
the class ApplicationInitializer method sessionDestroyed.
@Override
public void sessionDestroyed(HttpSessionEvent httpSessionEvent) {
ServletContext ctx = httpSessionEvent.getSession().getServletContext();
final ShutdownManager shutdownManager = (ShutdownManager) ctx.getAttribute(ShutdownManager.class.getName());
shutdownManager.sessionDestroyed(httpSessionEvent);
}
Aggregations