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