Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: dad105c17f9cbe2438e8964cf2f44bc370bd3ec8 (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
/*******************************************************************************
 * Copyright (c) 2008 IBM Corporation 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package security.a;

import java.net.URL;
import java.util.Enumeration;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;

public class Activator implements BundleActivator {

	public void start(BundleContext context) throws Exception {
		Enumeration urls = context.getBundle().findEntries("resources", "frag.a.txt", false); //$NON-NLS-1$//$NON-NLS-2$
		if (urls == null || !urls.hasMoreElements())
			throw new Exception("Did not find any resources"); //$NON-NLS-1$
		while (urls.hasMoreElements()) {
			URL url = (URL) urls.nextElement();
			if (url == null)
				throw new Exception("The URL is null"); //$NON-NLS-1$
		}
	}

	public void stop(BundleContext context) throws Exception {
		//nothing
	}

}

Back to the top