blob: 97d35f34f8b151aedbe50c84e9396e5fcd0d9bfe [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 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
*******************************************************************************/
package org.eclipse.equinox.http.servletbridge.internal;
import org.eclipse.equinox.http.servlet.HttpServiceServlet;
import org.eclipse.equinox.servletbridge.BridgeServlet;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class Activator implements BundleActivator {
private HttpServiceServlet httpServiceServlet;
public void start(BundleContext context) throws Exception {
httpServiceServlet = new HttpServiceServlet();
BridgeServlet.registerServletDelegate(httpServiceServlet);
}
public void stop(BundleContext context) throws Exception {
BridgeServlet.unregisterServletDelegate(httpServiceServlet);
httpServiceServlet = null;
}
}