Add the possibility to load a bach of providers.
Example:
public interface HelloService {}
@ServiceProvider
public class Impl1 implements HelloService {}
@ServiceProvider
public class Impl2 implements HelloService {}
public class SomeClass {
@ServiceProviderList
public Collection<? extends HelloService> getProviders() { ... }
}
Add the possibility to load a bach of providers.
Example: