import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class MyModule implements BundleActivator {
public void start(BundleContext context) throws Exception {
System.out.println("Hello OSGi!");
}
public void stop(BundleContext context) throws Exception {
System.out.println("Goodbye OSGi!");
}
}