dain 2006/02/01 06:50:15
Modified: modules/openejb-builder/src/test/org/openejb/transaction
ContainerPolicyTest.java
Log:
Major refactor
Split container into an object to represent a deployed ejb and a set of
shared containers which process invocations
Introduced interface between CMP container and CMP engine
Revision Changes Path
1.6 +5 -5
openejb/modules/openejb-builder/src/test/org/openejb/transaction/ContainerPolicyTest.java
Index: ContainerPolicyTest.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/openejb-builder/src/test/org/openejb/transaction/ContainerPolicyTest.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ContainerPolicyTest.java 13 Sep 2005 02:31:44 -0000 1.5
+++ ContainerPolicyTest.java 1 Feb 2006 11:50:15 -0000 1.6
@@ -65,8 +65,8 @@
import org.apache.geronimo.transaction.ConnectionReleaser;
import junit.framework.TestCase;
-import org.openejb.EJBInvocation;
-import org.openejb.EJBInvocationImpl;
+import org.openejb.EjbInvocation;
+import org.openejb.EjbInvocationImpl;
import org.openejb.EJBInterfaceType;
import org.tranql.cache.InTxCache;
@@ -75,7 +75,7 @@
*/
public class ContainerPolicyTest extends TestCase {
private MockInterceptor interceptor;
- private EJBInvocation invocation;
+ private EjbInvocation invocation;
private MockTransactionManager txnManager;
private TransactionContextManager transactionContextManager;
@@ -120,7 +120,7 @@
txnManager = new MockTransactionManager();
transactionContextManager = new
TransactionContextManager(txnManager, null);
interceptor = new MockInterceptor(transactionContextManager);
- invocation = new EJBInvocationImpl(EJBInterfaceType.LOCAL, 0, null);
+ invocation = new EjbInvocationImpl(EJBInterfaceType.LOCAL, 0, null);
}
private static class MockInterceptor implements Interceptor {