Search in sources :

Example 1 with ConcurrentException

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));
}
Also used : ConfigurationAdminNonOsgiProxy(org.pentaho.platform.web.http.ConfigurationAdminNonOsgiProxy) ConcurrentException(org.apache.commons.lang3.concurrent.ConcurrentException)

Aggregations

ConcurrentException (org.apache.commons.lang3.concurrent.ConcurrentException)1 ConfigurationAdminNonOsgiProxy (org.pentaho.platform.web.http.ConfigurationAdminNonOsgiProxy)1