04-03-2014 10:38 PM
String path = home + File.separator + "lib" + File.separator + "el.properties";
File file = new File(path);
if (file.exists()) { … }
public ExpressionManager() {
this(null);
}
public ExpressionManager(Map<Object, Object> beans) {
super(beans, false);
// Use the ExpressionFactoryImpl in activiti build in version of juel, with parametrised method expressions enabled
expressionFactory = new ExpressionFactoryImpl();
this.beans = beans;
}
public ExpressionManager() {
this(null);
}
public ExpressionManager(boolean initFactory) {
this(null, initFactory);
}
public ExpressionManager(Map<Object, Object> beans) {
this(beans, true);
}
public ExpressionManager(Map<Object, Object> beans, boolean initFactory) {
this.beans = beans;
if(initFactory) {
// Use the ExpressionFactoryImpl in activiti build in version of juel, with parametrised method expressions enabled
expressionFactory = new ExpressionFactoryImpl();
}
}
04-03-2014 11:29 PM
04-05-2014 03:50 AM
04-06-2014 07:06 PM
04-22-2014 04:42 AM
11-02-2014 01:26 AM
11-03-2014 05:52 AM
01-27-2015 06:52 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.