net.javacrumbs.springws.test.expression.XPathExpressionResolver Maven / Gradle / Ivy
/**
* Copyright 2009-2010 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.javacrumbs.springws.test.expression;
import java.net.URI;
import java.util.Map;
import javax.xml.namespace.NamespaceContext;
import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathExpressionException;
import javax.xml.xpath.XPathFactory;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.xml.namespace.SimpleNamespaceContext;
import org.w3c.dom.Document;
/**
* Evaluates XPath expression.
* @author Lukas Krecan
*
*/
public class XPathExpressionResolver implements ExpressionResolver{
private final Log logger = LogFactory.getLog(getClass());
private NamespaceContext namespaceContext;
/**
* Evaluates an expression.
*
* @param expression
* @param uri
* @param document
* @return
*/
public String resolveExpression(String expression, URI uri, Document document) {
XPathFactory factory = XPathFactory.newInstance();
factory.setXPathVariableResolver(new WsTestXPathVariableResolver(uri));
try {
XPath xpath = factory.newXPath();
if (getNamespaceContext()!=null)
{
xpath.setNamespaceContext(getNamespaceContext());
}
String result = xpath.evaluate(expression, document);
logger.debug("Expression \"" + expression + "\" resolved to \"" + result+"\"");
return result;
} catch (XPathExpressionException e) {
throw new ExpressionResolverException("Could not evaluate XPath expression \"" + expression + "\" : \"" + e.getMessage()+"\"", e);
}
}
public void setNamespaceMap(Map namespaceMap) {
SimpleNamespaceContext context = new SimpleNamespaceContext();
context.setBindings(namespaceMap);
setNamespaceContext(context);
}
public NamespaceContext getNamespaceContext() {
return namespaceContext;
}
public void setNamespaceContext(NamespaceContext namespaceContext) {
this.namespaceContext = namespaceContext;
}
}