String className = oelang.properties.get("runtime-class");
// backward compatibility.
className = className.replace("com.fs.pxe.","org.apache.ode.");
Class cls = Class.forName(className);
ExpressionLanguageRuntime elangRT = (ExpressionLanguageRuntime) cls.newInstance();
elangRT.initialize(oelang.properties);
_runtimes.put(oelang, elangRT);
} catch (ConfigurationException ce) {
throw ce;
} catch (IllegalAccessException e) {
throw new ConfigurationException("Illegal Access Error", e);