1 22 package org.jboss.ejb3.test.timer; 23 24 import java.util.Date ; 25 26 27 28 34 public interface TimerTester 35 { 36 void checkMandatoryTransaction(); 37 38 void startTimer(long pPeriod); 39 40 boolean isTimerCalled(); 41 42 void accessTimer(); 43 44 void setTimer(Date expiration); 45 46 void startTimerAndRollback(long pPeriod); 47 48 void startTimerViaEJBContext(long pPeriod); 49 } 50 | Popular Tags |