Package org.gatein.cdi.contexts

Examples of org.gatein.cdi.contexts.PortletRedisplayedContextImpl


    @SuppressWarnings("unused")
    public void afterBeanDiscovery(@Observes AfterBeanDiscovery afterBeanDiscovery) {
        List<CDIPortletContext> contextList = new ArrayList<CDIPortletContext>(2);
        contextList.add(new PortletLifecycleContextImpl());
        contextList.add(new PortletRedisplayedContextImpl());

        for (CDIPortletContext context : contextList) {
            afterBeanDiscovery.addContext(context);
        }
        contexts = Collections.unmodifiableCollection(contextList);
View Full Code Here

TOP

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

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.