All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.skyscreamer.yoga.classfinder.HibernateClassFinderStrategy Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
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 );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy