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. package javax.management.timer;
  8. /**
  9. * <p>Definitions of the notifications sent by TimerAlarmClock
  10. * MBeans.</p>
  11. *
  12. * @deprecated This class is of no use to user code. It is retained
  13. * purely for compatibility reasons.
  14. *
  15. * @since 1.5
  16. * @since.unbundled JMX 1.1
  17. */
  18. @Deprecated
  19. public class TimerAlarmClockNotification
  20. extends javax.management.Notification {
  21. /* Serial version */
  22. private static final long serialVersionUID = -4841061275673620641L;
  23. /*
  24. * ------------------------------------------
  25. * CONSTRUCTORS
  26. * ------------------------------------------
  27. */
  28. /**
  29. * Constructor.
  30. *
  31. * @param source the source.
  32. */
  33. public TimerAlarmClockNotification(TimerAlarmClock source) {
  34. super("", source, 0);
  35. }
  36. }