Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 535c7e73cb122cce7aab0e64041dcb792dbfcfb3 (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
/*******************************************************************************
 * Copyright (c) 2005, 2014 Cognos Incorporated, IBM Corporation 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:
 *     Cognos Incorporated - initial API and implementation
 *     IBM Corporation - bug fixes and enhancements
 *     Raymond Augé <raymond.auge@liferay.com> - Bug 436698
 *******************************************************************************/
package org.eclipse.equinox.http.servlet;

import org.eclipse.equinox.http.servlet.internal.servlet.ProxyServlet;

/**
 * The HttpServiceServlet is the "public" side of a Servlet that when registered (and init() called) in a servlet container
 * will in-turn register and provide an OSGi Http Service implementation.
 * This class is not meant for extending or even using directly and is purely meant for registering
 * in a servlet container.
 * @noextend This class is not intended to be subclassed by clients.
 */
public class HttpServiceServlet extends ProxyServlet {
	private static final long serialVersionUID = -3647550992964861187L;
}

Back to the top