1 |
The responsibilities of bean developer are:
-
defining the home interface and remote interface,
-
implementing the remote interface,
-
implementing ejbCreate(), ejbPostCreate(), and ejbRemove() methods,
-
(if bean-managed persistence is in use) bean implements ejbFind<METHOD>() methods,
-
(if it is a Session Bean) implementing the javax.ejb.SessionBean interface and (optionally) javax.ejb.SessionSynchronization interface, and
-
(if it is Entity Bean) implementing the javax.ejb.EntityBean interface.
|