blob: 5b6cb7efa29edaf1856cdac79bcb7a773ba869de [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2010 Cloudsmith Inc and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Cloudsmith Inc - initial API and implementation
* IBM Corporation - ongoing development
* Genuitec - Bug 291926
* Sonatype, Inc. - transport split
******************************************************************************/
package org.eclipse.equinox.internal.p2.repository;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
/**
* The activator class controls the plug-in life cycle.
* This activator has helper methods to get file transfer service tracker, and
* for making sure required ECF bundles are started.
*/
public class Activator implements BundleActivator {
public static final String ID = "org.eclipse.equinox.p2.repository"; //$NON-NLS-1$
private static BundleContext context;
public void start(BundleContext aContext) throws Exception {
Activator.context = aContext;
//Force the startup of the registry bundle to make sure that the preference scope is registered
Class.forName("org.eclipse.core.runtime.IExtensionRegistry"); //$NON-NLS-1$
}
public void stop(BundleContext aContext) throws Exception {
Activator.context = aContext;
}
public static BundleContext getContext() {
return Activator.context;
}
}