NEW: ExpressionPath provides access to property and elName (#1550)

This commit is contained in:
Roland Praml
2018-11-19 22:16:01 +13:00
committed by Rob Bygrave
parent 06b71781f5
commit 7be4675d3e
4 changed files with 27 additions and 0 deletions
@@ -1,6 +1,7 @@
package io.ebeaninternal.server.deploy;
import io.ebean.bean.EntityBean;
import io.ebean.plugin.Property;
import io.ebean.text.StringParser;
import io.ebeaninternal.api.SpiExpressionRequest;
import io.ebeaninternal.server.el.ElPropertyValue;
@@ -226,4 +227,9 @@ public final class BeanFkeyProperty implements ElPropertyValue {
throw new RuntimeException("ElPropertyDeploy only - not implemented");
}
@Override
public Property getProperty() {
throw new RuntimeException("ElPropertyDeploy only - not implemented");
}
}