package at.gv.egiz.pdfas.common.utils; import ognl.OgnlContext; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Created with IntelliJ IDEA. * User: afitzek * Date: 9/11/13 * Time: 1:05 PM * To change this template use File | Settings | File Templates. */ public class OgnlUtils { private static final Logger logger = LoggerFactory.getLogger(OgnlUtils.class); public static String resolvsOgnlExpression(String expression, OgnlContext ctx) { // TODO! return expression; } }