01: /*
02: * $Id: BeanPayloadExpressionEvaluator.java 11231 2008-03-06 21:17:37Z rossmason $
03: * --------------------------------------------------------------------------------------
04: * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
05: *
06: * The software in this package is published under the terms of the CPAL v1.0
07: * license, a copy of which has been included with this distribution in the
08: * LICENSE.txt file.
09: */
10: package org.mule.module.xml.expression;
11:
12: import org.jaxen.JaxenException;
13: import org.jaxen.XPath;
14: import org.jaxen.javabean.JavaBeanXPath;
15:
16: /** TODO */
17: public class BeanPayloadExpressionEvaluator extends
18: AbstractXPathExpressionEvaluator {
19: public static final String NAME = "bean";
20:
21: protected XPath createXPath(String expression, Object object)
22: throws JaxenException {
23: expression = expression.replaceAll("[.]", "/");
24: return new JavaBeanXPath(expression);
25: }
26:
27: protected Object extractResultFromNode(Object result) {
28: return ((org.jaxen.javabean.Element) result).getObject();
29: }
30:
31: /** {@inheritDoc} */
32: public String getName() {
33: return NAME;
34: }
35: }
|