I have an Interface called 'Foo' and i have a bundle 'b'.
Now I want to get all classes implementing interface 'Foo' in bundle b
Something like below
org.osgi.framework.Bundle bundle = ...;
List<Class<? extends Foo>> allImplemetation = getAllImplementation(bundle);