[cdi-dev] Specializing producer methods & qualifiers
Christian Kaltepoth
christian at kaltepoth.de
Tue Apr 14 00:13:01 EDT 2015
Hey all,
I've a question regarding specializing qualified producer methods. It would
be great to get your opinion on this.
Imaging this producer method:
public class MyProducer {
@Produces
@MyQualifier
public Something produce() {
// ...
}
}
Now imagine the producer method is specialized like this:
public class MyExtendedProducer extends MyProducer {
@Override
@Produces
@Specializes
public Something produce() {
// ...
}
}
Please not that I NOT added @MyQualifier to the specializing producer
method.
Now for this injection point:
@Inject
@MyQualifier
private Something something;
What is expected to happen according to the spec? Will the specialized
producer be used or not?
Thanks
Christian
--
Christian Kaltepoth
Blog: http://blog.kaltepoth.de/
Twitter: http://twitter.com/chkal
GitHub: https://github.com/chkal
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/cdi-dev/attachments/20150414/023eaca3/attachment.html
More information about the cdi-dev
mailing list