blob: d181096bcd133c6ffbc00e44a1406cc21438ee56 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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:
* 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
}
}