~ubuntu-branches/ubuntu/wily/libhibernate3-java/wily-proposed

« back to all changes in this revision

Viewing changes to src/org/hibernate/id/AbstractPostInsertGenerator.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-10-14 14:43:34 UTC
  • Revision ID: james.westby@ubuntu.com-20071014144334-eamc8i0q10gs1aro
Tags: upstream-3.2.5
ImportĀ upstreamĀ versionĀ 3.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//$Id: AbstractPostInsertGenerator.java 9681 2006-03-24 18:10:04Z steve.ebersole@jboss.com $
 
2
package org.hibernate.id;
 
3
 
 
4
import java.io.Serializable;
 
5
 
 
6
import org.hibernate.engine.SessionImplementor;
 
7
 
 
8
/**
 
9
 * @author Gavin King
 
10
 */
 
11
public abstract class AbstractPostInsertGenerator implements PostInsertIdentifierGenerator{
 
12
        public Serializable generate(SessionImplementor s, Object obj) {
 
13
                return IdentifierGeneratorFactory.POST_INSERT_INDICATOR;
 
14
        }
 
15
}