/******************************************************************************* * Copyright (c) 2014 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é - Bug 436698 ******************************************************************************/ package org.eclipse.equinox.http.servlet.tests.util; import java.util.concurrent.atomic.AtomicBoolean; import javax.servlet.ServletRequestEvent; import javax.servlet.ServletRequestListener; /** * @author Raymond Augé */ public class BaseServletRequestListener implements ServletRequestListener { public AtomicBoolean initialized = new AtomicBoolean(false); public AtomicBoolean destroyed = new AtomicBoolean(false); @Override public void requestDestroyed(ServletRequestEvent arg0) { destroyed.set(true); } @Override public void requestInitialized(ServletRequestEvent arg0) { initialized.set(true); } }