/**
* @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
*/
public void start( final BundleContext bundleContext ) throws Exception
{
osgiManager = new OsgiManager( bundleContext );
try
{
final Class activatorClass = bundleContext.getBundle().loadClass(STATUS_ACTIVATOR);
this.statusActivator = (BundleActivator) activatorClass.newInstance();