1 25 26 28 package org.objectweb.jonas.jtests.beans.beanexc; 29 30 import java.rmi.RemoteException ; 31 import javax.ejb.EJBObject ; 32 33 public interface AccountS extends EJBObject { 34 public void doAppException_1() throws RemoteException , AppException; 35 public void doUncheckedException_1() throws RemoteException ; 36 public void doRemoteException_1() throws RemoteException ; 37 public void doAppException_2(boolean rollflg) throws RemoteException , AppException; 38 public void doUncheckedException_2() throws RemoteException ; 39 public void doEJBException_1() throws RemoteException ; 40 public void doEJBException_2() throws RemoteException ; 41 public void doEJBException_sup() throws RemoteException ; 42 public void doAppException_3() throws RemoteException , AppException; 43 public void doUncheckedException_3() throws RemoteException ; 44 public void ping() throws RemoteException ; 45 public boolean iAmDestroyed() throws RemoteException ; 46 } 47 | Popular Tags |