1 25 26 package javax.ejb; 27 28 import java.rmi.RemoteException ; 29 30 37 public interface SessionBean extends EnterpriseBean { 38 39 55 void setSessionContext(SessionContext ctx) throws EJBException , RemoteException ; 56 57 72 void ejbRemove() throws EJBException , RemoteException ; 73 74 89 void ejbActivate() throws EJBException , RemoteException ; 90 91 108 void ejbPassivate() throws EJBException , RemoteException ; 109 } 110 | Popular Tags |