djencks 2005/02/04 21:36:25
Modified: modules/core/src/java/org/openejb/sfsb
StatefulInstanceContext.java
Log:
Don't try to construct invalid EJBInvocations, or expect an AssertionError if
you do.
Revision Changes Path
1.8 +2 -2
openejb/modules/core/src/java/org/openejb/sfsb/StatefulInstanceContext.java
Index: StatefulInstanceContext.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/sfsb/StatefulInstanceContext.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- StatefulInstanceContext.java 5 Oct 2004 07:04:02 -0000 1.7
+++ StatefulInstanceContext.java 5 Feb 2005 02:36:25 -0000 1.8
@@ -73,7 +73,7 @@
public StatefulInstanceContext(Object containerId, EJBProxyFactory
proxyFactory, SessionBean instance, Object id, TransactionContextManager
transactionContextManager, UserTransactionImpl userTransaction,
SystemMethodIndices systemMethodIndices, Interceptor systemChain, Set
unshareableResources, Set applicationManagedSecurityResources) {
//currently stateful beans have no timer service.
- super(systemMethodIndices, systemChain, unshareableResources,
applicationManagedSecurityResources, instance, proxyFactory, null);
+ super(systemChain, unshareableResources,
applicationManagedSecurityResources, instance, proxyFactory, null);
this.containerId = containerId;
this.id = id;
statefulContext = new StatefulSessionContext(this,
transactionContextManager, userTransaction);