de.terrestris.shoguncore.dao.ImageFileDao Maven / Gradle / Ivy
package de.terrestris.shoguncore.dao;
import de.terrestris.shoguncore.model.File;
import de.terrestris.shoguncore.model.ImageFile;
import org.springframework.stereotype.Repository;
/**
* @author Johannes Weskamm
*/
@Repository("imageFileDao")
public class ImageFileDao
extends FileDao {
/**
* Public default constructor for this DAO.
*/
@SuppressWarnings("unchecked")
public ImageFileDao() {
super((Class) ImageFile.class);
}
/**
* Constructor that has to be called by subclasses.
*
* @param clazz
*/
protected ImageFileDao(Class clazz) {
super(clazz);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy