import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class MyActivator implements BundleActivator {
public void start(BundleContext context) throws Exception {
System.out.println("My bundle started");
}
public void stop(BundleContext context) throws Exception {
System.out.println("My bundle stopped");
}
}