Package org.apache.synapse.processors.builtin

Examples of org.apache.synapse.processors.builtin.LogProcessor


public class BulitinProcessorTest extends TestCase {
    public void testLogProcessor() throws Exception {
        SynapseMessage sm = new Axis2SynapseMessage(
                Axis2EnvSetup.axis2Deployment("target/synapse-repository"));
        Processor log = new LogProcessor();
        boolean result = log.process(null,sm);
        assertTrue(result);
    }
View Full Code Here


    return LOG_Q;
  }


  public Processor createProcessor(SynapseEnvironment se, OMElement el) {
    LogProcessor lp = new LogProcessor();
    super.setNameOnProcessor(se,el,lp);
    return lp;
  }
View Full Code Here

TOP

Related Classes of org.apache.synapse.processors.builtin.LogProcessor

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.