Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c61b366bd331b10b40f78068f48b59a588996e74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*******************************************************************************
 * 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é <raymond.auge@liferay.com> - 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);
	}

}

Back to the top