-
Feature Request
-
Resolution: Obsolete
-
Major
-
None
-
None
-
None
I was reusing an example the Weld guys pointed me at.
InjectionPoint ip = (InjectionPoint)bm.getInjectableReference(new EmptyInjectionPoint(be...), cc);
The problem is that I'm using the configurator to create the bean, and the resulting function for the producer doesn't have access to the bean that was created.
abd.addBean()
.addQualifiers(new ClaimLiteral("", Claims.UNKNOWN))
.addType(type)
.scope(Dependent.class)
.createWith(ClaimProducer.INSTANCE);
So because of this, I have no way to get the injection point.