1 25 26 package javax.ejb; 27 28 import java.rmi.RemoteException ; 29 30 35 public interface EntityBean extends EnterpriseBean { 36 37 53 void setEntityContext(EntityContext ctx) throws EJBException , RemoteException ; 54 55 71 void unsetEntityContext() throws EJBException , RemoteException ; 72 73 92 void ejbRemove() throws RemoveException , EJBException , RemoteException ; 93 94 109 void ejbActivate() throws EJBException , RemoteException ; 110 111 127 void ejbPassivate() throws EJBException , RemoteException ; 128 129 144 void ejbLoad() throws EJBException , RemoteException ; 145 146 161 void ejbStore() throws EJBException , RemoteException ; 162 163 } 164 | Popular Tags |