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

springdao.support.SimpleSpringDao Maven / Gradle / Ivy

The newest version!
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy