Re[2]: [OWB] make @Specializes to work for me

2013-05-23 Thread tomee
is - is this intended as per CDI spec or an OWB bug? Would be glad to get a professional opinion before posting jira tickets. Kind regards Reinis -Ursprüngliche Nachricht- Betreff: Re: [OWB] make @Specializes to work for me Von: Reinis Vicups to...@orbit-x.de An: users@tomee.apache.org Datum: 2013/05/22

Re:[OWB] make @Specializes to work for me

2013-05-22 Thread tomee
Hi guys, excuse me for bumping my own message but two days later am still clueless. Could it possibly be that i may not @Specializes an abstract class? thx for your help! Reinis -Ursprüngliche Nachricht- Betreff: [OWB] make @Specializes to work for me Von: to...@orbit-x.de An: users

Re: [OWB] make @Specializes to work for me

2013-05-22 Thread John D. Ament
class? thx for your help! Reinis -Ursprüngliche Nachricht- Betreff: [OWB] make @Specializes to work for me Von: to...@orbit-x.de An: users@tomee.apache.org Datum: 2013/05/20 11:42:34 Hi guys, in my scenario I want to realize a template method. For this I implement common abstract

Re: [OWB] make @Specializes to work for me

2013-05-22 Thread Reinis Vicups
-Ursprüngliche Nachricht- Betreff: [OWB] make @Specializes to work for me Von: to...@orbit-x.de An: users@tomee.apache.org Datum: 2013/05/20 11:42:34 Hi guys, in my scenario I want to realize a template method. For this I implement common abstract base class: public abstract AbstractFooProducer

[OWB] make @Specializes to work for me

2013-05-20 Thread tomee
Hi guys, in my scenario I want to realize a template method. For this I implement common abstract base class: public abstract AbstractFooProducer { protected void init() {} @Produces public Foo produceFoo() { init(); return foo; } and then one or more specific