2.14.1.2. OSGi Bundle Activator Interface

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