use of org.apache.commons.lang3.concurrent.ConcurrentException in project pentaho-platform by pentaho.
the class PentahoWebContextFilter method init.
@Override
public void init(FilterConfig filterConfig) throws ServletException {
this.configurationAdminProxy = new ConfigurationAdminNonOsgiProxy();
this.lazyServicesPath = new LazyInitializer<String>() {
@Override
protected String initialize() throws ConcurrentException {
return initializeServicesPath();
}
};
this.setSsoEnabled(filterConfig.getInitParameter(PARAM_SSO_ENABLED));
}
Aggregations