List of usage examples for javax.xml.xpath XPathVariableResolver interface-usage
From source file net.javacrumbs.springws.test.expression.WsTestXPathVariableResolver.java
/** * Resolves XPath variables. Supports uri and context XPath variables. * @author Lukas Krecan * */ public class WsTestXPathVariableResolver implements XPathVariableResolver {
From source file Main.java
class MapVariableResolver implements XPathVariableResolver { private Hashtable variables = new Hashtable(); public void addVariable(String namespaceURI, String localName, Object value) { addVariable(new QName(namespaceURI, localName), value);
From source file MainClass.java
class MapVariableResolver implements XPathVariableResolver { private Hashtable variables = new Hashtable(); public void addVariable(String namespaceURI, String localName, Object value) { addVariable(new QName(namespaceURI, localName), value);
From source file org.apache.camel.builder.xml.MessageVariableResolver.java
/**
* A variable resolver for XPath expressions which support properties on the
* message, exchange as well as making system properties and environment
* properties available.
* <p/>
* Implementations of this resolver must be thread safe
From source file org.apache.ode.bpel.rtrep.v1.xpath10.jaxp.JaxpVariableResolver.java
/** * JAXP function resolver for BPEL XPath functions */ public class JaxpVariableResolver implements XPathVariableResolver { private static final Log __log = LogFactory.getLog(JaxpVariableResolver.class);
From source file org.apache.ode.bpel.rtrep.v2.xpath10.jaxp.JaxpVariableResolver.java
/** * JAXP variable resolver for BPEL XPath functions */ public class JaxpVariableResolver implements XPathVariableResolver { private static final Log __log = LogFactory.getLog(JaxpVariableResolver.class);
From source file org.apache.ode.bpel.rtrep.v1.xpath20.JaxpVariableResolver.java
/** * @author mriou <mriou at apache dot org> */ public class JaxpVariableResolver implements XPathVariableResolver { private static final Log __log = LogFactory.getLog(JaxpVariableResolver.class);
From source file org.apache.ode.bpel.rtrep.v2.xpath20.JaxpVariableResolver.java
/** * @author mriou <mriou at apache dot org> */ public class JaxpVariableResolver implements XPathVariableResolver { private static final Log __log = LogFactory.getLog(JaxpVariableResolver.class);
From source file org.apache.ode.bpel.compiler.v1.xpath10.jaxp.JaxpVariableResolver.java
/** * This is a mock implementation of the XPathVariableResolver for compilation. It always returns an empty string which * allows execution of XPath expressions even if we don't have any values yet. This way we can easily rule out invalid * variables and isolate properly BPEL variables. */ public class JaxpVariableResolver implements XPathVariableResolver {
From source file org.apache.ode.bpel.compiler.v2.xpath10.jaxp.JaxpVariableResolver.java
/** * This is a mock implementation of the XPathVariableResolver for compilation. It always returns an empty string which * allows execution of XPath expressions even if we don't have any values yet. This way we can easily rule out invalid * variables and isolate properly BPEL variables. */ public class JaxpVariableResolver implements XPathVariableResolver {