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

de.terrestris.shogun2.dao.LayerDao Maven / Gradle / Ivy

The newest version!
package de.terrestris.shogun2.dao;

import org.springframework.stereotype.Repository;

import de.terrestris.shogun2.model.layer.Layer;

/**
 * @param 
 * @author Nils Bühner
 */
@Repository("layerDao")
public class LayerDao extends
    GenericHibernateDao {

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy