From: <ste...@us...> - 2006-02-14 03:24:26
|
Update of /cvsroot/hibernate/Hibernate3/test/org/hibernate/test/legacy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10165/test/org/hibernate/test/legacy Modified Files: CustomPersister.java Log Message: HHH-1416 & HHH-1421 : EJB3 LockModeTypes Index: CustomPersister.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate3/test/org/hibernate/test/legacy/CustomPersister.java,v retrieving revision 1.30 retrieving revision 1.31 diff -u -d -r1.30 -r1.31 --- CustomPersister.java 12 Feb 2006 02:47:38 -0000 1.30 +++ CustomPersister.java 14 Feb 2006 03:24:18 -0000 1.31 @@ -509,6 +509,11 @@ return INSTANCES.get(id); } + public Object forceVersionIncrement(Serializable id, Object currentVersion, SessionImplementor session) + throws HibernateException { + return null; + } + public EntityMode guessEntityMode(Object object) { if ( !isInstance(object, EntityMode.POJO) ) { return null; |