1 package org.hibernate.id; 3 4 import java.io.Serializable ; 5 6 import org.hibernate.HibernateException; 7 import org.hibernate.engine.SessionImplementor; 8 9 12 public interface PostInsertIdentifierGenerator extends IdentifierGenerator { 13 public Serializable getGenerated(SessionImplementor session, Object object, PostInsertIdentityPersister persister) 14 throws HibernateException; 15 } 16 | Popular Tags |