Package org.talend.esb.policy.correlation.impl.xpath

Examples of org.talend.esb.policy.correlation.impl.xpath.XpathNamespace


  public List<XpathNamespace> getCorrelationNamespaces(){
    return namespaces;
  }
 
  public final void addNamespace(String prefix, String uri){
      XpathNamespace namespace = new XpathNamespace();
      namespace.setPrefix(prefix);
      namespace.setUri(uri);
      namespaces.add(namespace);
  }
View Full Code Here

TOP

Related Classes of org.talend.esb.policy.correlation.impl.xpath.XpathNamespace

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.