de.terrestris.shoguncore.dao.AbstractTokenDao Maven / Gradle / Ivy
package de.terrestris.shoguncore.dao;
import de.terrestris.shoguncore.model.token.Token;
import org.springframework.stereotype.Repository;
/**
* As the {@link Token} class is abstract, this class will also be abstract.
* There will also be NO {@link Repository} annotation here.
*
* @param
* @author Nils Bühner
*/
public abstract class AbstractTokenDao extends
GenericHibernateDao {
/**
* Constructor that has to be called by subclasses.
*
* @param clazz
*/
protected AbstractTokenDao(Class clazz) {
super(clazz);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy