use of org.activiti.engine.impl.form.JuelFormEngine in project Activiti by Activiti.
the class ProcessEngineConfigurationImpl method initFormEngines.
protected void initFormEngines() {
if (formEngines == null) {
formEngines = new HashMap<String, FormEngine>();
FormEngine defaultFormEngine = new JuelFormEngine();
// default form engine is looked up with null
formEngines.put(null, defaultFormEngine);
formEngines.put(defaultFormEngine.getName(), defaultFormEngine);
}
if (customFormEngines != null) {
for (FormEngine formEngine : customFormEngines) {
formEngines.put(formEngine.getName(), formEngine);
}
}
}
Aggregations