/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.perf.interfaces;


import javax.ejb.EJBObject;
import java.rmi.RemoteException;

public interface TxSession extends EJBObject
{
   public String txRequired() throws RemoteException;
   
   public String txRequiresNew() throws RemoteException;
   
   public String txSupports() throws RemoteException;
   
   public String txMandatory() throws RemoteException;
   
   public String txNever() throws RemoteException;
   
   public String txNotSupported() throws RemoteException;
   
   public String requiredToSupports() throws RemoteException;
   
   public String requiredToMandatory() throws RemoteException;
   
   public String requiredToRequiresNew() throws RemoteException;
}