User: fleury
Date: 00/08/17 13:13:17
Modified: src/main/org/jboss/ejb/plugins/jrmp12/interfaces
EntityProxy.java
Log:
Support for fastCache
DOESN'T FULLY WORK YET..
I NEED TO GO TO THE OFFICE THOUGH!!!!!!!! (dies in one of the TestBeans test)
Revision Changes Path
1.5 +5 -4
jboss/src/main/org/jboss/ejb/plugins/jrmp12/interfaces/EntityProxy.java
Index: EntityProxy.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/ejb/plugins/jrmp12/interfaces/EntityProxy.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- EntityProxy.java 2000/08/16 09:08:07 1.4
+++ EntityProxy.java 2000/08/17 20:13:16 1.5
@@ -7,16 +7,17 @@
package org.jboss.ejb.plugins.jrmp12.interfaces;
import org.jboss.ejb.plugins.jrmp.interfaces.ContainerRemote;
+import org.jboss.util.FastKey;
/**
* <description>
*
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
- * @version $Revision: 1.4 $
+ * @version $Revision: 1.5 $
*/
public class EntityProxy
- extends org.jboss.ejb.plugins.jrmp.interfaces.EntityProxy
+ extends org.jboss.ejb.plugins.jrmp.interfaces.EntityProxy
implements org.jboss.proxy.InvocationHandler
{
public EntityProxy()
@@ -24,9 +25,9 @@
// For externalization to work
}
- public EntityProxy(String name, ContainerRemote container, Object id, boolean
optimize)
+ public EntityProxy(String name, ContainerRemote container, FastKey id, boolean
optimize)
{
- super(name, container, id, optimize);
+ super(name, container, id, optimize);
}
}