Searched defs:expiration (Results 1 - 4 of 4) sorted by relevance

/glassfish-3.1.2/ejb/javax.ejb/src/main/java/javax/ejb/
H A DTimerService.java67 * with the timer expiration notification. This can be null.
111 * Create an interval timer whose first expiration occurs after a specified
116 * before the first timer expiration notification.
119 * between timer expiration notifications. Expiration notifications are
120 * scheduled relative to the time of the first expiration. If expiration
122 * bean), two or more expiration notifications may occur in close
126 * with the timer expiration. This can be null.
147 * Create an interval timer whose first expiration occurs after a specified
152 * before the first timer expiration notificatio
204 createTimer(Date expiration, Serializable info) argument
229 createSingleActionTimer(Date expiration, TimerConfig timerConfig) argument
[all...]
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DEJBTimerServiceWrapper.java123 public Timer createTimer(Date expiration, Serializable info) argument
127 checkExpiration(expiration);
129 return createTimerInternal(expiration, 0, info);
367 private void checkExpiration(Date expiration) argument
369 if( expiration == null ) {
370 throw new IllegalArgumentException("null expiration");
372 if( expiration.getTime() < 0 ) {
373 throw new IllegalArgumentException("Negative expiration");
H A DEJBTimerService.java154 // expiration or between subsequent timer expirations.
617 // expiration time to decide whether we need to fire one
624 // tracking last expiration or an expiration hasn't
629 // @@@ need to handle case where last expiration time
643 "Rescheduling missed expiration for " +
650 // keep expiration time at initialExpiration. That
652 // that the timer will return to fixed rate expiration.
663 "Rescheduling missed expiration for " +
665 timerState + ". Last timer expiration "
868 rescheduleTask(TimerPrimaryKey timerId, Date expiration) argument
872 scheduleTask(TimerPrimaryKey timerId, Date expiration) argument
876 scheduleTask(TimerPrimaryKey timerId, Date expiration, boolean rescheduled) argument
[all...]
/glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/common/util/admin/
H A DAuthTokenManager.java88 * number of uses. Rather, it only refreshes the token's expiration time.
125 private long expiration = System.currentTimeMillis() + (TOKEN_EXPIRATION_IN_MS); field in class:AuthTokenManager.TokenInfo
135 new Integer(usesRemaining), Boolean.toString(expiration <= now),
146 expiration += (TOKEN_EXPIRATION_IN_MS);
151 return usesRemaining <= 0 || expiration <= now;

Completed in 19 milliseconds