1 17 package org.apache.servicemix.expression; 18 19 import org.jaxen.JaxenException; 20 21 27 public class JaxenStringXPathExpression extends JaxenXPathExpression { 28 29 public JaxenStringXPathExpression(String xpath) throws Exception { 30 super(xpath); 31 } 32 33 protected Object evaluateXPath(Object object) throws JaxenException { 34 return getXpathObject().stringValueOf(object); 35 } 36 } 37 | Popular Tags |