|
|
|
|
@ -21,6 +21,7 @@
|
|
|
|
|
* @author Emil Ivov
|
|
|
|
|
*/
|
|
|
|
|
public class ProtocolMediaActivator
|
|
|
|
|
implements BundleActivator
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* The <tt>Logger</tt> used by the <tt>ProtocolMediaActivator</tt>
|
|
|
|
|
@ -67,6 +68,20 @@ public void start(BundleContext context) throws Exception
|
|
|
|
|
ProtocolMediaActivator.bundleContext = context;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Called when this bundle is stopped so the Framework can perform the
|
|
|
|
|
* bundle-specific activities necessary to stop the bundle.
|
|
|
|
|
*
|
|
|
|
|
* @param context The execution context of the bundle being stopped.
|
|
|
|
|
* @throws 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.
|
|
|
|
|
*/
|
|
|
|
|
public void stop(BundleContext context) throws Exception
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns a reference to a ConfigurationService implementation currently
|
|
|
|
|
* registered in the bundle context or null if no such implementation was
|
|
|
|
|
|