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.......

[613 byte] By [itechminda] at [2007-10-2 17:57:34]
# 1

> 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?

http://java.sun.com/blueprints/corej2eepatterns/Patterns/SessionFacade.html

This is the usual behavior for a session facade.

xHackera at 2007-7-13 19:16:21 > top of Java-index,Other Topics,Patterns & OO Design...