org.hibernate.cfg.SecondPass Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate Show documentation
Show all versions of hibernate Show documentation
Relational Persistence for Java
//$Id: SecondPass.java 10194 2006-08-03 07:53:09Z [email protected] $
package org.hibernate.cfg;
import java.io.Serializable;
import org.hibernate.MappingException;
/**
* Second pass operation
*
* @author Emmanuel Bernard
*/
public interface SecondPass extends Serializable {
void doSecondPass(java.util.Map persistentClasses)
throws MappingException;
}