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

de.terrestris.shoguncore.dao.WpsReferenceDao Maven / Gradle / Ivy

There is a newer version: 5.3.13
Show newest version
package de.terrestris.shoguncore.dao;

import de.terrestris.shoguncore.model.wps.WpsReference;
import org.springframework.stereotype.Repository;


/**
 * @author Nils Bühner
 */
@Repository("wpsReferenceDao")
public class WpsReferenceDao extends WpsParameterDao {

    /**
     * Public default constructor for this DAO.
     */
    @SuppressWarnings("unchecked")
    public WpsReferenceDao() {
        super((Class) WpsReference.class);
    }

    /**
     * Constructor that has to be called by subclasses.
     *
     * @param clazz
     */
    protected WpsReferenceDao(Class clazz) {
        super(clazz);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy