| TimerAlarmClockNotification.java |
/*
* JBoss, the OpenSource EJB server
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package javax.management.timer;
import javax.management.Notification;
/** An obsolete timer class
*
* @deprecated
* @author Scott.Stark@jboss.org
* @version $Revision: 1.1.6.1 $
*/
public class TimerAlarmClockNotification
extends Notification
{
private static final long serialVersionUID = -4841061275673620641L;
public TimerAlarmClockNotification(TimerAlarmClock source)
{
super("", source, 0);
}
}
| TimerAlarmClockNotification.java |