blob: 9afe76d324ddcc8d9ad1dcb2b9828c56afb96f35 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2011 Sonatype, Inc.
* 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:
* Sonatype, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.discovery.compatibility;
import org.eclipse.core.runtime.Plugin;
import org.eclipse.equinox.internal.p2.discovery.compatibility.util.CacheManager;
import org.eclipse.equinox.internal.p2.transport.ecf.RepositoryTransport;
import org.osgi.framework.BundleContext;
public class Activator extends Plugin {
private static Activator plugin;
private CacheManager manager;
public static final String ID = "org.eclipse.equinox.p2.discovery.compatibility"; //$NON-NLS-1$
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
}
public void stop(BundleContext context) throws Exception {
super.stop(context);
plugin = null;
}
public static Activator getDefault() {
return plugin;
}
public synchronized CacheManager getCacheManager() {
if (manager == null) {
manager = new CacheManager(new RepositoryTransport());
}
return manager;
}
}