Examples of PortletLifecycleContextImpl


Examples of org.gatein.cdi.contexts.PortletLifecycleContextImpl

    private Collection<CDIPortletContext> contexts;

    @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);
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.