Hi,
I'm trying to have services created at runtime using the iPOJO Factory API. The component I want to create an instance of has a requirement on another service, and I use the @Requires annotation. I know I can define a filter for the requirement directly in the @Requires annotation, but how could I achieve the same effect through another API, such as @Configuration annotation or Factory API, or even have the requirement use one of the components properties to define which factory it should use?

