You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by an...@apache.org on 2009/10/08 16:45:36 UTC

svn commit: r823195 - /cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/test/java/org/apache/cayenne/CayenneContextWithDataContextTest.java

Author: andrey
Date: Thu Oct  8 14:45:35 2009
New Revision: 823195

URL: http://svn.apache.org/viewvc?rev=823195&view=rev
Log:
missing lifecycle method

Modified:
    cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/test/java/org/apache/cayenne/CayenneContextWithDataContextTest.java

Modified: cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/test/java/org/apache/cayenne/CayenneContextWithDataContextTest.java
URL: http://svn.apache.org/viewvc/cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/test/java/org/apache/cayenne/CayenneContextWithDataContextTest.java?rev=823195&r1=823194&r2=823195&view=diff
==============================================================================
--- cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/test/java/org/apache/cayenne/CayenneContextWithDataContextTest.java (original)
+++ cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/test/java/org/apache/cayenne/CayenneContextWithDataContextTest.java Thu Oct  8 14:45:35 2009
@@ -196,6 +196,9 @@
 
                 public void preUpdate(Object entity) {
                 }
+
+				public void prePersist(Object entity) {
+				}
             });
 
             ClientConnection connection = new LocalConnection(csChannel);
@@ -297,6 +300,9 @@
 
                 public void preUpdate(Object entity) {
                 }
+
+				public void prePersist(Object entity) {
+				}
             });
 
             ClientConnection connection = new LocalConnection(csChannel);
@@ -353,6 +359,9 @@
 
                 public void preUpdate(Object entity) {
                 }
+
+				public void prePersist(Object entity) {
+				}
             });
 
             ClientConnection connection = new LocalConnection(csChannel);