User: fleury
Date: 00/08/17 13:13:18
Modified: src/main/org/jboss/ejb/plugins/jrmp13/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.4 +5 -4
jboss/src/main/org/jboss/ejb/plugins/jrmp13/interfaces/EntityProxy.java
Index: EntityProxy.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/ejb/plugins/jrmp13/interfaces/EntityProxy.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- EntityProxy.java 2000/08/16 09:08:17 1.3
+++ EntityProxy.java 2000/08/17 20:13:17 1.4
@@ -7,16 +7,17 @@
package org.jboss.ejb.plugins.jrmp13.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.3 $
+ * @version $Revision: 1.4 $
*/
public final class EntityProxy
- extends org.jboss.ejb.plugins.jrmp.interfaces.EntityProxy
+ extends org.jboss.ejb.plugins.jrmp.interfaces.EntityProxy
implements java.lang.reflect.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);
}
}