Package org.impalaframework.spring.module.impl

Examples of org.impalaframework.spring.module.impl.ParentBean


       
        Object proxiedNamedBean = childContext.getBean("proxiedNamedBean");
        assertFalse(ParentBean.class.getName().equals(proxiedNamedBean.getClass().getName()));
        assertTrue(proxiedNamedBean instanceof ParentBean);
       
        ParentBean proxied = (ParentBean) proxiedNamedBean;
        System.out.println(proxied.getInstance());
       
        ParentBean next = (ParentBean) childContext.getBean("proxiedNamedBean");
        System.out.println(next.getInstance());
    }
View Full Code Here

TOP

Related Classes of org.impalaframework.spring.module.impl.ParentBean

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.