-
Inheritance in stateless session ejb (2 messages)
- Posted by: sairam manda
- Posted on: December 01 2006 10:47 EST
In heritance in stateless session beans ejb. I have two stateless session beans called AwardsWorkflowBean and WorkflowPerformerBean. AwardsWorkflowBean bean works as session façade ie it has refernce to WorkflowPerformerBean local interface . Also in ejb-jar.xml for AwardsWorkflowBean I mentioned reference to WorkflowPerformerBean. This works fine. Now I created another bean called AwardsBean. The super class for this bean is AwardsWorkflowBean . In AwardsBean ejb-jar.xml I mentioned reference to AwardsWorkflowBean . In this case will I be able to access methods of AwardsWorkflowBean which internally calls methods of its super class WorkflowPerformerBean?Threaded Messages (2)
- Re: Inheritance in stateless session ejb by arijit dey on December 04 2006 00:57 EST
- Re: Inheritance in stateless session ejb by Chetan Khandar on December 05 2006 09:20 EST
-
Re: Inheritance in stateless session ejb[ Go to top ]
- Posted by: arijit dey
- Posted on: December 04 2006 00:57 EST
- in response to sairam manda
Go thru this posting, it will clear all yopur confusions https://www.theserverside.com/discussions/thread.tss?thread_id=265 cheers, http://www.javaicillusion.blogspot.com/ -
Re: Inheritance in stateless session ejb[ Go to top ]
- Posted by: Chetan Khandar
- Posted on: December 05 2006 09:20 EST
- in response to sairam manda
YES