[hibernate-commits] Hibernate SVN: r10455 - trunk/Hibernate3/src/org/hibernate/proxy

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue Sep 5 20:05:28 EDT 2006


Author: epbernard
Date: 2006-09-05 20:05:28 -0400 (Tue, 05 Sep 2006)
New Revision: 10455

Modified:
   trunk/Hibernate3/src/org/hibernate/proxy/EntityNotFoundDelegate.java
Log:
EJB-160 make Ejb3Configuration and AnnotationConfiguration serializable and allow JNDI reference
EntityNotFoundDelegate must be serializable

Modified: trunk/Hibernate3/src/org/hibernate/proxy/EntityNotFoundDelegate.java
===================================================================
--- trunk/Hibernate3/src/org/hibernate/proxy/EntityNotFoundDelegate.java	2006-09-06 00:03:49 UTC (rev 10454)
+++ trunk/Hibernate3/src/org/hibernate/proxy/EntityNotFoundDelegate.java	2006-09-06 00:05:28 UTC (rev 10455)
@@ -7,6 +7,6 @@
  *
  * @author Steve Ebersole
  */
-public interface EntityNotFoundDelegate {
+public interface EntityNotFoundDelegate extends Serializable {
 	public void handleEntityNotFound(String entityName, Serializable id);
 }




More information about the hibernate-commits mailing list