public class Db4oActivator
extends java.lang.Object
implements org.osgi.framework.BundleActivator
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
BUNDLE_ID |
| Constructor and Description |
|---|
Db4oActivator() |
| Modifier and Type | Method and Description |
|---|---|
void |
start(org.osgi.framework.BundleContext context)
This method is called when the bundle is started by the Framework.
|
void |
stop(org.osgi.framework.BundleContext context)
This method is called when the bundle is stopped by the Framework.
|
public static final java.lang.String BUNDLE_ID
public void start(org.osgi.framework.BundleContext context)
throws java.lang.Exception
start in interface org.osgi.framework.BundleActivatorcontext - The execution context of the bundle being started.java.lang.Exception - If this method throws an exception, this
bundle is marked as stopped and the Framework will remove this
bundle's listeners, unregister all services registered by this
bundle, and release all services used by this bundle.public void stop(org.osgi.framework.BundleContext context)
throws java.lang.Exception
stop in interface org.osgi.framework.BundleActivatorcontext - The execution context of the bundle being stopped.java.lang.Exception - If this method throws an exception, the
bundle is still marked as stopped, and the Framework will remove
the bundle's listeners, unregister all services registered by the
bundle, and release all services used by the bundle.