001 package railo.runtime.orm.hibernate.event; 002 003 import org.hibernate.event.PostLoadEvent; 004 import org.hibernate.event.PostLoadEventListener; 005 006 import railo.runtime.Component; 007 008 public class PostLoadEventListenerImpl extends EventListener implements PostLoadEventListener { 009 010 private static final long serialVersionUID = -3211504876360671598L; 011 012 public PostLoadEventListenerImpl(Component component) { 013 super(component, POST_LOAD, false); 014 } 015 016 public void onPostLoad(PostLoadEvent event) { 017 invoke(POST_LOAD, event.getEntity()); 018 } 019 020 }