Open Source Repository

Home /hibernate/hibernate-3.2.7.ga | Repository Home



org/hibernate/event/PostLoadEventListener.java
//$Id: PostLoadEventListener.java 5006 2004-12-19 20:15:13Z oneovthafew $
package org.hibernate.event;

import java.io.Serializable;

/**
 * Occurs after an an entity instance is fully loaded.
 *
 @author <a href="mailto:[email protected]">Kabir Khan</a>
 */
public interface PostLoadEventListener extends Serializable {
  public void onPostLoad(PostLoadEvent event);
}