1 45 package org.openejb.test.stateless; 46 47 import java.rmi.RemoteException ; 48 49 import javax.transaction.RollbackException ; 50 51 import org.openejb.test.object.Account; 52 53 57 public interface ContainerTxStatelessObject extends javax.ejb.EJBObject { 58 59 public String txMandatoryMethod(String message) throws RemoteException ; 60 61 public String txNeverMethod(String message) throws RemoteException ; 62 63 public String txNotSupportedMethod(String message) throws RemoteException ; 64 65 public String txRequiredMethod(String message) throws RemoteException ; 66 67 public String txRequiresNewMethod(String message) throws RemoteException ; 68 69 public String txSupportsMethod(String message) throws RemoteException ; 70 71 public Account retreiveAccount(String ssn) throws RemoteException ; 72 73 public void openAccount(Account acct, Boolean rollback) throws RemoteException , RollbackException ; 74 } 75 | Popular Tags |