Makes ProtocolMediaActivator implement BundleActivator

cusax-fix
Emil Ivov 16 years ago
parent 42da4218b0
commit bb7fa3320b

@ -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

@ -1,4 +1,4 @@
Bundle-Activator: net.java.sip.communicator.impl.protocol.media.ProtocolMediaActivator
Bundle-Activator: net.java.sip.communicator.service.protocol.media.ProtocolMediaActivator
Bundle-Name: Media Utilities for the Protocol Provider Service
Bundle-Description: Media Utilities for the Protocol Provider Service.
Bundle-Vendor: sip-communicator.org

Loading…
Cancel
Save