Package org.apache.synapse.processors

Examples of org.apache.synapse.processors.InProcessor


public class InProcessorTest extends TestCase {

    public void testInProcessor() throws Exception {
        SynapseMessage sm = new Axis2SynapseMessage(
                Axis2EnvSetup.axis2Deployment("target/synapse-repository"));
        InProcessor pro = new InProcessor();
        boolean retrun = pro.process(null,sm);
        assertTrue(retrun);
    }
View Full Code Here


  public QName getTagQName() {
    return IN_Q;
  }

  public Processor createProcessor(SynapseEnvironment se, OMElement el) {
    InProcessor sp = new InProcessor();
    super.addChildrenAndSetName(se, el, sp);
    return sp;
  }
View Full Code Here

TOP

Related Classes of org.apache.synapse.processors.InProcessor

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.