Can we call this design pattern as session facade?
Hi,
In my application, I am using struts framework and EJBs.
My Action Servlet accesses session beans which are developed to access Entity Beans.
My problem is, I have some well built Business logic classes with methods accessing Database to fetch, update so on. I want to use use these methods from my session beans.
If I do so, will my Pattern be still called as Session Facade ?
Cant I access both my already built Business Logic methods as well as Entity Beans developed from Session Facade layer?
Please suggest and state whether my approach have any faults.......

