org.skyscreamer.yoga.classfinder.HibernateClassFinderStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yoga-hibernate Show documentation
Show all versions of yoga-hibernate Show documentation
Extension to Yoga for simplified Hibernate integration
package org.skyscreamer.yoga.classfinder;
import org.hibernate.Hibernate;
import org.skyscreamer.yoga.util.ClassFinderStrategy;
/**
* User: corby
* Date: 8/28/12
*/
public class HibernateClassFinderStrategy implements ClassFinderStrategy
{
@SuppressWarnings("unchecked")
public Class findClass( T instance )
{
return Hibernate.getClass( instance );
}
}