User: starksm
Date: 01/07/11 01:30:34
Added: src/main/org/jboss/test/perf/interfaces TxSession.java
TxSessionHome.java
Log:
Add basic performace tests of cmp entity findByPrimaryKey and stateless
session transacted method invocations.
Revision Changes Path
1.1 jbosstest/src/main/org/jboss/test/perf/interfaces/TxSession.java
Index: TxSession.java
===================================================================
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;
}
1.1
jbosstest/src/main/org/jboss/test/perf/interfaces/TxSessionHome.java
Index: TxSessionHome.java
===================================================================
package org.jboss.test.perf.interfaces;
import javax.ejb.CreateException;
import javax.ejb.EJBHome;
import java.rmi.RemoteException;
public interface TxSessionHome extends EJBHome
{
public TxSession create() throws RemoteException, CreateException;
}
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development