home *** CD-ROM | disk | FTP | other *** search
- package javax.ejb;
-
- import java.rmi.RemoteException;
-
- public interface EntityBean extends EnterpriseBean {
- void setEntityContext(EntityContext var1) throws RemoteException;
-
- void unsetEntityContext() throws RemoteException;
-
- void ejbRemove() throws RemoteException, RemoveException;
-
- void ejbActivate() throws RemoteException;
-
- void ejbPassivate() throws RemoteException;
-
- void ejbLoad() throws RemoteException;
-
- void ejbStore() throws RemoteException;
- }
-