Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ff0905702615b6994c21026cc3917d9071178a36 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*******************************************************************************
 * Copyright (c) 2010, 2017 Sonatype, Inc.
 *
 * 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:
 *      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$

	@Override
	public void start(BundleContext context) throws Exception {
		super.start(context);
		plugin = this;
	}

	@Override
	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;
	}
}

Back to the top