1 25 26 package javax.ejb; 27 28 import java.rmi.Remote ; 29 import java.rmi.RemoteException ; 30 31 36 public interface EJBObject extends Remote { 37 38 46 EJBHome getEJBHome() throws RemoteException ; 47 48 56 Object getPrimaryKey() throws RemoteException ; 57 58 65 void remove() throws RemoteException , RemoveException ; 66 67 75 Handle getHandle() throws RemoteException ; 76 77 85 boolean isIdentical(EJBObject obj) throws RemoteException ; 86 87 } 88 | Popular Tags |