Package org.apache.cxf.binding.jbi

Examples of org.apache.cxf.binding.jbi.JBIBindingConfiguration


    @Test
    public void testConfiguration() {
        ClassPathXmlApplicationContext context =
            new ClassPathXmlApplicationContext(
                 new String[] {"/org/apache/cxf/binding/jbi/spring/binding.xml"});
        JBIBindingConfiguration bindingConfiguration =
            (JBIBindingConfiguration) context.getBean("myJBIBinding");
        assertNotNull("The configuration should not be null", bindingConfiguration);
        assertEquals("The mtom property should be true", bindingConfiguration.isMtomEnabled(), true);
    }
View Full Code Here

TOP

Related Classes of org.apache.cxf.binding.jbi.JBIBindingConfiguration

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.