Package org.apache.synapse.processors.mediatortypes

Examples of org.apache.synapse.processors.mediatortypes.ClassMediatorProcessor.process()


    public void testClassMediatorProcessor() throws Exception {
        SynapseMessage sm = new Axis2SynapseMessage(
                Axis2EnvSetup.axis2Deployment("target/synapse-repository"));
        ClassMediatorProcessor pro = new ClassMediatorProcessor();
        pro.setClazz(Class.forName("org.apache.synapse.mediators.LoggerTestSample"));
        boolean result = pro.process(null,sm);
        assertTrue(result);
    }
}
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.