/******************************************************************************* * Copyright (c) 2016 Raymond Aug� and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Raymond Aug� <raymond.auge@liferay.com> - Bug 436698 ******************************************************************************/ package org.eclipse.equinox.http.servlet.tests.util; import java.util.concurrent.atomic.AtomicBoolean; import javax.servlet.ServletContext; import javax.servlet.ServletContextEvent; import javax.servlet.ServletContextListener; /** * @author Raymond Aug� */ public class BaseServletContextListener implements ServletContextListener { public AtomicBoolean initialized = new AtomicBoolean(false); public AtomicBoolean destroyed = new AtomicBoolean(false); public ServletContext servletContext; @Override public void contextDestroyed(ServletContextEvent servletContextEvent) { destroyed.set(true); } @Override public void contextInitialized(ServletContextEvent servletContextEvent) { initialized.set(true); servletContext = servletContextEvent.getServletContext(); } }