use of org.pentaho.platform.plugin.action.mondrian.MondrianSystemListener in project pentaho-platform by pentaho.
the class PentahoBoot method enableOlap.
/**
* Enables the components necessary to create reports
*/
public void enableOlap() {
IPentahoObjectFactory objectFactory = getFactory();
if (objectFactory instanceof IPentahoDefinableObjectFactory) {
// $NON-NLS-1$
define("connection-MDX", MDXConnection.class.getName(), Scope.LOCAL);
}
addLifecycleListener(new MondrianSystemListener());
}
Aggregations