tags:

views:

589

answers:

1

How can I use Business Interface pattern with an EJB (session bean) with Local as well remote interfaces?

+1  A: 

It does not matter whether the interface is local or remote. You can write all your business methods into one interface and then use it as local and remote interface. The difference is how it will get called, but not what is executed.

Kariem