com.evasion.common.TimerInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of API Show documentation
Show all versions of API Show documentation
API de l'application modulaire evasion-en-ligne
The newest version!
/*
* To change this template, choose Tools | Templates and open the template in
* the editor.
*/
package com.evasion.common;
import com.evasion.exception.EvasionException;
import javax.ejb.Timer;
/**
*
* @author glon-56610
*/
public interface TimerInterface {
public void updateImportTimer() throws EvasionException;
public void timeout(Timer timer);
}