3.13.1.1. OSGi Bundle Activator Interface

interface BundleActivator {
  void start (BundleContext context) throws Exception;
  void stop (BundleContext context) throws Exception;
}