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

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

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

import org.springframework.stereotype.Repository;

import de.terrestris.shogun2.model.token.UserToken;

/**
 * As the {@link UserToken} 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 AbstractUserTokenDao extends
    AbstractTokenDao {

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy