Package org.springframework.sca

Examples of org.springframework.sca.ScaServiceProxyFactoryBean


//        TestBean service = (TestBean) applicationContext.getBean("fooService");
//        assertEquals("call me", service.echo("call me"));
    }

    public void testSCAReference() {
        ScaServiceProxyFactoryBean pf = (ScaServiceProxyFactoryBean) applicationContext.getBean("&fooReference");
        assertEquals("fooReference", pf.getReferenceName());
        TestReference ref = (TestReference) applicationContext.getBean("fooReference");
//      assertNotNull(ref);
    }
View Full Code Here

TOP

Related Classes of org.springframework.sca.ScaServiceProxyFactoryBean

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.