1 /******************************************************************************* 2 * Copyright (c) 2005-2007 Cognos Incorporated, IBM Corporation and others 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * Cognos Incorporated - initial API and implementation 10 * IBM Corporation - bug fixes and enhancements 11 *******************************************************************************/ 12 package org.eclipse.equinox.http.servlet; 13 14 import org.eclipse.equinox.http.servlet.internal.ProxyServlet; 15 16 /** 17 * The HttpServiceServlet is the "public" side of a Servlet that when registered (and init() called) in a servlet container 18 * will in-turn register and provide an OSGi Http Service implementation. 19 * This class is not meant for extending or even using directly and is purely meant for registering 20 * in a servlet container. 21 */ 22 public class HttpServiceServlet extends ProxyServlet { 23 private static final long serialVersionUID = -3647550992964861187L; 24 } 25