Package org.apache.myfaces.cdi.dependent

Examples of org.apache.myfaces.cdi.dependent.AbstractBeanStorage


        T result = (T) beanManager.getReference(bean, type, creationalContext);

        if (bean.getScope().equals(Dependent.class))
        {
            //TODO add serializable check again or remove this TODO once MYFACES-3805 is clarified
            AbstractBeanStorage beanStorage = getContextualReference(beanManager, RequestDependentBeanStorage.class);

            //noinspection unchecked
            beanStorage.add(new DependentBeanEntry(result, bean, creationalContext));
        }

        return result;
    }
View Full Code Here

TOP

Related Classes of org.apache.myfaces.cdi.dependent.AbstractBeanStorage

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.