Bundle-SymbolicName: com.example.mybundle
Import-Package: com.example.library
MathUtil mathUtil = new MathUtil();
bundleContext.registerService(MathUtil.class.getName(), mathUtil, null);
ServiceReference<MathUtil> mathUtilRef = bundleContext.getServiceReference(MathUtil.class);
MathUtil mathUtil = bundleContext.getService(mathUtilRef);