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