Package com.caucho.server.webbeans

Examples of com.caucho.server.webbeans.SessionContextContainer


    public void sessionDestroyed(HttpSessionEvent se)
    {
      HttpSession session = se.getSession();
     
      try {
        SessionContextContainer candiContainer
          = (SessionContextContainer) session.getAttribute("resin.candi.scope");
     
        if (candiContainer != null)
          candiContainer.close();
      } catch (Exception e) {
        log.log(Level.FINE, e.toString(), e);
      }
    }
View Full Code Here

TOP

Related Classes of com.caucho.server.webbeans.SessionContextContainer

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.