can I use two interfaces for my EJB?? for example
public class MyBean implements MyInterface, EntityBean {}
Printable View
can I use two interfaces for my EJB?? for example
public class MyBean implements MyInterface, EntityBean {}
yes but the methods declared in other interface are not visible to client
because only methods in the remote interface are visible to the client and
it is already implemented by EJBObject
"Badri Kuppa" <bkuppa@usa.net> wrote:
>
>can I use two interfaces for my EJB?? for example
>
>public class MyBean implements MyInterface, EntityBean {}
>
>