dain 2004/04/03 20:49:10
Modified: modules/core/src/java/org/openejb/entity
EntityInstanceFactory.java
Log:
Added deployment support for Stateful and BMP beans
Fixed more serialization problems
Added ContainerBuilder interface
Revision Changes Path
1.3 +3 -2
openejb/modules/core/src/java/org/openejb/entity/EntityInstanceFactory.java
Index: EntityInstanceFactory.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/entity/EntityInstanceFactory.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- EntityInstanceFactory.java 21 Mar 2004 21:26:34 -0000 1.2
+++ EntityInstanceFactory.java 4 Apr 2004 01:49:10 -0000 1.3
@@ -47,6 +47,7 @@
*/
package org.openejb.entity;
+import java.io.Serializable;
import javax.ejb.EntityBean;
import org.apache.commons.logging.Log;
@@ -66,7 +67,7 @@
*
* @version $Revision$ $Date$
*/
-public class EntityInstanceFactory implements InstanceFactory {
+public class EntityInstanceFactory implements InstanceFactory, Serializable {
private static final Log log = LogFactory.getLog(EntityInstanceFactory.class);
private final ReadOnlyContext componentContext;