1 /* 2 * @(#)TimerAlarmClockNotification.java 1.19 04/05/18 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package javax.management.timer; 9 10 /** 11 * <p>Definitions of the notifications sent by TimerAlarmClock 12 * MBeans.</p> 13 * 14 * @deprecated This class is of no use to user code. It is retained 15 * purely for compatibility reasons. 16 * 17 * @since 1.5 18 * @since.unbundled JMX 1.1 19 */ 20 @Deprecated 21 public class TimerAlarmClockNotification 22 extends javax.management.Notification { 23 24 /* Serial version */ 25 private static final long serialVersionUID = -4841061275673620641L; 26 27 /* 28 * ------------------------------------------ 29 * CONSTRUCTORS 30 * ------------------------------------------ 31 */ 32 33 /** 34 * Constructor. 35 * 36 * @param source the source. 37 */ 38 public TimerAlarmClockNotification(TimerAlarmClock source) { 39 super("", source, 0); 40 } 41 } 42