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