use of org.wso2.carbon.humantask.core.engine.runtime.xpath.XPathExpressionRuntime in project carbon-business-process by wso2.
the class HumanTaskEngine method initExpressionLanguageRuntimes.
private void initExpressionLanguageRuntimes() {
expressionLanguageRuntimeRegistry = new HashMap<String, ExpressionLanguageRuntime>();
expressionLanguageRuntimeRegistry.put(XPathExpressionRuntime.ns, new XPathExpressionRuntime());
}
Aggregations