]> git.argeo.org Git - lgpl/argeo-commons.git/blob - osgiboot/Activator.java
Prepare next development cycle
[lgpl/argeo-commons.git] / osgiboot / Activator.java
1 package org.argeo.slc.osgiboot;
2
3 import org.osgi.framework.BundleActivator;
4 import org.osgi.framework.BundleContext;
5
6 /**
7 * An OSGi configurator. See <a
8 * href="http://wiki.eclipse.org/Configurator">http:
9 * //wiki.eclipse.org/Configurator</a>
10 */
11 public class Activator implements BundleActivator {
12
13 public void start(BundleContext bundleContext) throws Exception {
14 OsgiBoot osgiBoot = new OsgiBoot(bundleContext);
15 osgiBoot.bootstrap();
16 }
17
18 public void stop(BundleContext context) throws Exception {
19 }
20 }