Examples of StageProcessor


Examples of org.apache.synapse.processors.StageProcessor

public class StageProcessorTest extends TestCase {
    public void testStageProcessor() throws Exception {
        SynapseMessage sm = new Axis2SynapseMessage(
                Axis2EnvSetup.axis2Deployment("target/synapse-repository"));
        StageProcessor pro = new StageProcessor();
        boolean result = pro.process(null, sm);
        assertTrue(result);

        List list = new LinkedList();
        list.add(new RegexProcessor());
        list.add(new XPathProcessor());
        pro.setList(list);

        boolean ret = pro.process(null,sm);

        assertTrue(ret);

    }
View Full Code Here

Examples of org.apache.synapse.processors.StageProcessor

  public QName getTagQName() {
    return STAGE_Q;
  }

  public Processor createProcessor(SynapseEnvironment se, OMElement el) {
    StageProcessor sp = new StageProcessor();
    super.addChildrenAndSetName(se, el, sp);
    return sp;
  }
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.