1 package org.hibernate.loader.entity; 3 4 import java.io.Serializable ; 5 6 import org.hibernate.HibernateException; 7 import org.hibernate.engine.SessionImplementor; 8 9 13 public interface UniqueEntityLoader { 14 18 public Object load(Serializable id, Object optionalObject, SessionImplementor session) throws HibernateException; 19 } 20 21 22 23 24 25 26 | Popular Tags |