1 45 package org.openejb.test.stateless; 46 47 import java.rmi.RemoteException ; 48 49 import org.openejb.test.object.Account; 50 import org.openejb.test.object.Transaction; 51 52 57 public interface BeanTxStatelessObject extends javax.ejb.EJBObject { 58 59 public Transaction getUserTransaction() throws RemoteException ; 60 61 public Transaction jndiUserTransaction() throws RemoteException ; 62 63 public void openAccount(Account account, Boolean commit) throws RemoteException , javax.transaction.RollbackException ; 64 65 public Account retreiveAccount(String ssn) throws RemoteException ; 66 } 67 | Popular Tags |