Package org.apache.synapse.xml

Examples of org.apache.synapse.xml.ClassMediatorProcessorConfigurator


        SynapseMessage smc = new Axis2SynapseMessage(msgCtx);
        env.injectMessage(smc);
        assertNotNull(env.lookupProcessor("mediation"));
    }
    public void testClassMediatorConfigurator() throws Exception {
        ClassMediatorProcessorConfigurator conf = new ClassMediatorProcessorConfigurator();
        Processor pro = conf.createProcessor(env, config.getFirstElement().getFirstElement());
        assertTrue(pro instanceof ClassMediatorProcessor);
        assertEquals("mediation",pro.getName());
    }
View Full Code Here

TOP

Related Classes of org.apache.synapse.xml.ClassMediatorProcessorConfigurator

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.