/* * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template */ package com.megatim.apifdxweb.dao.ifaces.tmp; import com.megatim.apifdxweb.model.searchentities.tmp.TokenTmpSearch; import com.megatim.apifdxweb.model.tmp.StatutTmp; import com.megatim.apifdxweb.model.tmp.TokenTmp; import com.megatim.fdxcommons.dao.ifaces.abstracts.CustomDAOIfaces; import java.util.List; /** * * @author ASUS */ public interface TokenTmpDAO extends CustomDAOIfaces { List getByStatutTmp(StatutTmp statutTmp); List getExpiredToken(); TokenTmp getByParticipantAndTypeFichier(String codeParticipant, String codeTypeFichier); }