springdao.support.SimpleSpringDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sd4j Show documentation
Show all versions of sd4j Show documentation
Spring Dao Libray for easy using JPA
package springdao.support;
/**
*
* @author Kent Yeh
*/
public class SimpleSpringDao extends AbstractSpringDao {
public Class> clazz;
public SimpleSpringDao(Class> clazz) {
this.clazz = clazz;
}
@Override
public Class getClazz() {
return clazz;
}
}