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

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

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

import org.springframework.stereotype.Repository;

import de.terrestris.shoguncore.model.wps.WpsProcessExecute;


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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy