Title: [2448] trunk/openejb2/modules/core/src/java/org/openejb/server/ejbd/EjbInvocationStream.java: Whoops.
Revision
2448
Author
dblevins
Date
2006-02-16 01:09:57 -0500 (Thu, 16 Feb 2006)

Log Message

Whoops.  Changed the construcor of EjbInvocationImpl and forgot to update this monster.

Modified Paths

Diff

Modified: trunk/openejb2/modules/core/src/java/org/openejb/server/ejbd/EjbInvocationStream.java (2447 => 2448)

--- trunk/openejb2/modules/core/src/java/org/openejb/server/ejbd/EjbInvocationStream.java	2006-02-16 04:53:46 UTC (rev 2447)
+++ trunk/openejb2/modules/core/src/java/org/openejb/server/ejbd/EjbInvocationStream.java	2006-02-16 06:09:57 UTC (rev 2448)
@@ -48,9 +48,9 @@
 import java.io.ObjectInput;
 import java.lang.reflect.Method;
 
-import org.apache.geronimo.core.service.InvocationKey;
-import org.apache.geronimo.core.service.InvocationResult;
-import org.apache.geronimo.core.service.SimpleInvocationResult;
+import org.apache.geronimo.interceptor.InvocationKey;
+import org.apache.geronimo.interceptor.InvocationResult;
+import org.apache.geronimo.interceptor.SimpleInvocationResult;
 import org.apache.geronimo.transaction.context.TransactionContext;
 import org.openejb.EJBInstanceContext;
 import org.openejb.EJBInterfaceType;
@@ -66,7 +66,7 @@
 
     private ObjectInput in;
 
-    private final EjbInvocation invocationState = new EjbInvocationImpl();
+    private final EjbInvocation invocationState = new EjbInvocationImpl(null, -1, null);
     private EJBInterfaceType interfaceType;
 
     private int methodIndex = -1;

Reply via email to