Package org.apache.synapse.processors

Examples of org.apache.synapse.processors.RefProcessor


  public QName getTagQName() {
    return REF_Q;
  }

  public Processor createProcessor(SynapseEnvironment se, OMElement el) {
    RefProcessor rp = new RefProcessor();
    super.setNameOnProcessor(se, el, rp);
    OMAttribute attr = el.getAttribute(new QName("ref"));
    if (attr==null) throw new SynapseException("<ref> must have attribute ref");
    rp.setRef(attr.getAttributeValue());
    return rp;
  }
View Full Code Here

TOP

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

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.