All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.beangle.struts2.util.OgnlPropertyExtractor Maven / Gradle / Ivy

There is a newer version: 3.11.3
Show newest version
/*
 * Beangle, Agile Development Scaffold and Toolkits.
 *
 * Copyright © 2005, The Beangle Software.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see .
 */
package org.beangle.struts2.util;

import org.beangle.commons.script.EvaluationException;
import org.beangle.commons.script.ExpressionEvaluator;
import org.beangle.commons.text.i18n.TextResource;
import org.beangle.commons.transfer.exporter.DefaultPropertyExtractor;

/**
 * Property Extractor by Ognl.
 *
 * @author chaostone
 * @version $Id: $
 * @since 3.2.0
 */
public class OgnlPropertyExtractor extends DefaultPropertyExtractor {

  protected ExpressionEvaluator expressionEvaluator = new OgnlEvaluator();

  public OgnlPropertyExtractor() {
    super();
  }

  /**
   * 

* Constructor for OgnlPropertyExtractor. *

*/ public OgnlPropertyExtractor(TextResource textResource) { setTextResource(textResource); } /** *

* extract. *

* * @param target a {@link java.lang.Object} object. * @param property a {@link java.lang.String} object. * @return a {@link java.lang.Object} object. * @throws java.lang.Exception if any. */ protected Object extract(Object target, String property) throws Exception { if (errorProperties.contains(property)) return null; Object value = null; try { value = expressionEvaluator.eval(property, target); } catch (EvaluationException e) { return null; } if (value instanceof Boolean) { if (null == textResource) { return value; } else { if (Boolean.TRUE.equals(value)) return getText("common.yes", "Y"); else return getText("common.no", "N"); } } else { return value; } } public ExpressionEvaluator getExpressionEvaluator() { return expressionEvaluator; } public void setExpressionEvaluator(ExpressionEvaluator expressionEvaluator) { this.expressionEvaluator = expressionEvaluator; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy