package com.megatim.fdxconsultation.dao.ifaces.administration;
|
|
import com.bekosoftware.genericdaolayer.dao.ifaces.GenericDAO;
|
import com.megatim.fdxconsultation.model.administration.*;
|
|
/**
|
* Interface etendue par les interfaces locale et remote de la DAO
|
*
|
* @since Tue Jan 09 15:21:42 WAT 2018
|
*
|
*/
|
public interface HistoriqueMotDePasseDAO extends GenericDAO<HistoriqueMotDePasse, Long> {
|
|
public final static String SERVICE_NAME = "HistoriqueMotDePasseDAO";
|
|
/**
|
* Permet de determiner si le mot de passe existe
|
* @param motDePasse
|
* @param user
|
* @return
|
*/
|
public boolean siMotDePasseExiste(String motDePasse, User user);
|
|
}
|