de.terrestris.shoguncore.dao.WpsPluginDao Maven / Gradle / Ivy
package de.terrestris.shoguncore.dao;
import de.terrestris.shoguncore.model.wps.WpsPlugin;
import org.springframework.stereotype.Repository;
/**
* @author Nils Bühner
*/
@Repository("wpsPluginDao")
public class WpsPluginDao extends PluginDao {
/**
* Public default constructor for this DAO.
*/
@SuppressWarnings("unchecked")
public WpsPluginDao() {
super((Class) WpsPlugin.class);
}
/**
* Constructor that has to be called by subclasses.
*
* @param clazz
*/
protected WpsPluginDao(Class clazz) {
super(clazz);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy