Examples of ScaServiceProxyFactoryBean


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
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.