01: /*
02: * Copyright (C) The MX4J Contributors.
03: * All rights reserved.
04: *
05: * This software is distributed under the terms of the MX4J License version 1.0.
06: * See the terms of the MX4J License in the documentation provided with this software.
07: */
08:
09: package javax.management.timer;
10:
11: /**
12: * Do not use, it is kept only for backward compatibility reasons.
13: * This is a JMXRI class that creeped into the public JMX API by mistake.
14: * MX4J does not use it.
15: *
16: * @version $Revision: 1.4 $
17: * @deprecated
18: */
19: public class TimerAlarmClockNotification extends
20: javax.management.Notification {
21: private static final long serialVersionUID = 0xbcd1186b37930f5fL;
22:
23: /**
24: * Do not use
25: *
26: * @deprecated
27: */
28: public TimerAlarmClockNotification(TimerAlarmClock timer) {
29: super ("", timer, 0);
30: }
31: }
|