Package org.gatein.cdi.contexts

Examples of org.gatein.cdi.contexts.PortletRedisplayedContext


    public void sessionCreated(HttpSessionEvent event) {
    }

    @Override
    public void sessionDestroyed(HttpSessionEvent event) {
        PortletRedisplayedContext context = getExtension().getContext(PortletRedisplayedContext.class);
        if (context != null) {
            context.dissociate(event.getSession());
        }
    }
View Full Code Here

TOP

Related Classes of org.gatein.cdi.contexts.PortletRedisplayedContext

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.