feat(jdk8): move files to new folder to avoid resources compiled.
This commit is contained in:
1242
jdkSrc/jdk8/javax/management/timer/Timer.java
Normal file
1242
jdkSrc/jdk8/javax/management/timer/Timer.java
Normal file
File diff suppressed because it is too large
Load Diff
80
jdkSrc/jdk8/javax/management/timer/TimerAlarmClock.java
Normal file
80
jdkSrc/jdk8/javax/management/timer/TimerAlarmClock.java
Normal file
@@ -0,0 +1,80 @@
|
||||
/*
|
||||
* Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
package javax.management.timer;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.logging.Level;
|
||||
import static com.sun.jmx.defaults.JmxProperties.TIMER_LOGGER;
|
||||
|
||||
/**
|
||||
* This class provides a simple implementation of an alarm clock MBean.
|
||||
* The aim of this MBean is to set up an alarm which wakes up the timer every timeout (fixed-delay)
|
||||
* or at the specified date (fixed-rate).
|
||||
*/
|
||||
|
||||
class TimerAlarmClock extends java.util.TimerTask {
|
||||
|
||||
Timer listener = null;
|
||||
long timeout = 10000;
|
||||
Date next = null;
|
||||
|
||||
/*
|
||||
* ------------------------------------------
|
||||
* CONSTRUCTORS
|
||||
* ------------------------------------------
|
||||
*/
|
||||
|
||||
public TimerAlarmClock(Timer listener, long timeout) {
|
||||
this.listener = listener;
|
||||
this.timeout = Math.max(0L, timeout);
|
||||
}
|
||||
|
||||
public TimerAlarmClock(Timer listener, Date next) {
|
||||
this.listener = listener;
|
||||
this.next = next;
|
||||
}
|
||||
|
||||
/*
|
||||
* ------------------------------------------
|
||||
* PUBLIC METHODS
|
||||
* ------------------------------------------
|
||||
*/
|
||||
|
||||
/**
|
||||
* This method is called by the timer when it is started.
|
||||
*/
|
||||
public void run() {
|
||||
|
||||
try {
|
||||
//this.sleep(timeout);
|
||||
TimerAlarmClockNotification notif = new TimerAlarmClockNotification(this);
|
||||
listener.notifyAlarmClock(notif);
|
||||
} catch (Exception e) {
|
||||
TIMER_LOGGER.logp(Level.FINEST, Timer.class.getName(), "run",
|
||||
"Got unexpected exception when sending a notification", e);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Copyright (c) 2002, 2006, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
package javax.management.timer;
|
||||
|
||||
/**
|
||||
* <p>Definitions of the notifications sent by TimerAlarmClock
|
||||
* MBeans.</p>
|
||||
*/
|
||||
class TimerAlarmClockNotification
|
||||
extends javax.management.Notification {
|
||||
|
||||
/* Serial version */
|
||||
private static final long serialVersionUID = -4841061275673620641L;
|
||||
|
||||
/*
|
||||
* ------------------------------------------
|
||||
* CONSTRUCTORS
|
||||
* ------------------------------------------
|
||||
*/
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*
|
||||
* @param source the source.
|
||||
*/
|
||||
public TimerAlarmClockNotification(TimerAlarmClock source) {
|
||||
super("", source, 0);
|
||||
}
|
||||
}
|
||||
376
jdkSrc/jdk8/javax/management/timer/TimerMBean.java
Normal file
376
jdkSrc/jdk8/javax/management/timer/TimerMBean.java
Normal file
@@ -0,0 +1,376 @@
|
||||
/*
|
||||
* Copyright (c) 1999, 2007, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
package javax.management.timer;
|
||||
|
||||
|
||||
|
||||
// java imports
|
||||
//
|
||||
import java.util.Date;
|
||||
import java.util.Vector;
|
||||
// NPCTE fix for bugId 4464388, esc 0, MR , to be added after modification of jmx spec
|
||||
//import java.io.Serializable;
|
||||
// end of NPCTE fix for bugId 4464388
|
||||
|
||||
// jmx imports
|
||||
//
|
||||
import javax.management.InstanceNotFoundException;
|
||||
|
||||
/**
|
||||
* Exposes the management interface of the timer MBean.
|
||||
*
|
||||
* @since 1.5
|
||||
*/
|
||||
public interface TimerMBean {
|
||||
|
||||
/**
|
||||
* Starts the timer.
|
||||
* <P>
|
||||
* If there is one or more timer notifications before the time in the list of notifications, the notification
|
||||
* is sent according to the <CODE>sendPastNotifications</CODE> flag and then, updated
|
||||
* according to its period and remaining number of occurrences.
|
||||
* If the timer notification date remains earlier than the current date, this notification is just removed
|
||||
* from the list of notifications.
|
||||
*/
|
||||
public void start();
|
||||
|
||||
/**
|
||||
* Stops the timer.
|
||||
*/
|
||||
public void stop();
|
||||
|
||||
/**
|
||||
* Creates a new timer notification with the specified <CODE>type</CODE>, <CODE>message</CODE>
|
||||
* and <CODE>userData</CODE> and inserts it into the list of notifications with a given date,
|
||||
* period and number of occurrences.
|
||||
* <P>
|
||||
* If the timer notification to be inserted has a date that is before the current date,
|
||||
* the method behaves as if the specified date were the current date. <BR>
|
||||
* For once-off notifications, the notification is delivered immediately. <BR>
|
||||
* For periodic notifications, the first notification is delivered immediately and the
|
||||
* subsequent ones are spaced as specified by the period parameter.
|
||||
* <P>
|
||||
* Note that once the timer notification has been added into the list of notifications,
|
||||
* its associated date, period and number of occurrences cannot be updated.
|
||||
* <P>
|
||||
* In the case of a periodic notification, the value of parameter <i>fixedRate</i> is used to
|
||||
* specify the execution scheme, as specified in {@link java.util.Timer}.
|
||||
*
|
||||
* @param type The timer notification type.
|
||||
* @param message The timer notification detailed message.
|
||||
* @param userData The timer notification user data object.
|
||||
* @param date The date when the notification occurs.
|
||||
* @param period The period of the timer notification (in milliseconds).
|
||||
* @param nbOccurences The total number the timer notification will be emitted.
|
||||
* @param fixedRate If <code>true</code> and if the notification is periodic, the notification
|
||||
* is scheduled with a <i>fixed-rate</i> execution scheme. If
|
||||
* <code>false</code> and if the notification is periodic, the notification
|
||||
* is scheduled with a <i>fixed-delay</i> execution scheme. Ignored if the
|
||||
* notification is not periodic.
|
||||
*
|
||||
* @return The identifier of the new created timer notification.
|
||||
*
|
||||
* @exception java.lang.IllegalArgumentException The date is {@code null} or
|
||||
* the period or the number of occurrences is negative.
|
||||
*
|
||||
* @see #addNotification(String, String, Object, Date, long, long)
|
||||
*/
|
||||
// NPCTE fix for bugId 4464388, esc 0, MR, to be added after modification of jmx spec
|
||||
// public synchronized Integer addNotification(String type, String message, Serializable userData,
|
||||
// Date date, long period, long nbOccurences)
|
||||
// end of NPCTE fix for bugId 4464388
|
||||
|
||||
public Integer addNotification(String type, String message, Object userData,
|
||||
Date date, long period, long nbOccurences, boolean fixedRate)
|
||||
throws java.lang.IllegalArgumentException;
|
||||
|
||||
/**
|
||||
* Creates a new timer notification with the specified <CODE>type</CODE>, <CODE>message</CODE>
|
||||
* and <CODE>userData</CODE> and inserts it into the list of notifications with a given date,
|
||||
* period and number of occurrences.
|
||||
* <P>
|
||||
* If the timer notification to be inserted has a date that is before the current date,
|
||||
* the method behaves as if the specified date were the current date. <BR>
|
||||
* For once-off notifications, the notification is delivered immediately. <BR>
|
||||
* For periodic notifications, the first notification is delivered immediately and the
|
||||
* subsequent ones are spaced as specified by the period parameter.
|
||||
* <P>
|
||||
* Note that once the timer notification has been added into the list of notifications,
|
||||
* its associated date, period and number of occurrences cannot be updated.
|
||||
* <P>
|
||||
* In the case of a periodic notification, uses a <i>fixed-delay</i> execution scheme, as specified in
|
||||
* {@link java.util.Timer}. In order to use a <i>fixed-rate</i> execution scheme, use
|
||||
* {@link #addNotification(String, String, Object, Date, long, long, boolean)} instead.
|
||||
*
|
||||
* @param type The timer notification type.
|
||||
* @param message The timer notification detailed message.
|
||||
* @param userData The timer notification user data object.
|
||||
* @param date The date when the notification occurs.
|
||||
* @param period The period of the timer notification (in milliseconds).
|
||||
* @param nbOccurences The total number the timer notification will be emitted.
|
||||
*
|
||||
* @return The identifier of the new created timer notification.
|
||||
*
|
||||
* @exception java.lang.IllegalArgumentException The date is {@code null} or
|
||||
* the period or the number of occurrences is negative.
|
||||
*
|
||||
* @see #addNotification(String, String, Object, Date, long, long, boolean)
|
||||
*/
|
||||
// NPCTE fix for bugId 4464388, esc 0, MR , to be added after modification of jmx spec
|
||||
// public synchronized Integer addNotification(String type, String message, Serializable userData,
|
||||
// Date date, long period)
|
||||
// end of NPCTE fix for bugId 4464388 */
|
||||
|
||||
public Integer addNotification(String type, String message, Object userData,
|
||||
Date date, long period, long nbOccurences)
|
||||
throws java.lang.IllegalArgumentException;
|
||||
|
||||
/**
|
||||
* Creates a new timer notification with the specified <CODE>type</CODE>, <CODE>message</CODE>
|
||||
* and <CODE>userData</CODE> and inserts it into the list of notifications with a given date
|
||||
* and period and a null number of occurrences.
|
||||
* <P>
|
||||
* The timer notification will repeat continuously using the timer period using a <i>fixed-delay</i>
|
||||
* execution scheme, as specified in {@link java.util.Timer}. In order to use a <i>fixed-rate</i>
|
||||
* execution scheme, use {@link #addNotification(String, String, Object, Date, long, long,
|
||||
* boolean)} instead.
|
||||
* <P>
|
||||
* If the timer notification to be inserted has a date that is before the current date,
|
||||
* the method behaves as if the specified date were the current date. The
|
||||
* first notification is delivered immediately and the subsequent ones are
|
||||
* spaced as specified by the period parameter.
|
||||
*
|
||||
* @param type The timer notification type.
|
||||
* @param message The timer notification detailed message.
|
||||
* @param userData The timer notification user data object.
|
||||
* @param date The date when the notification occurs.
|
||||
* @param period The period of the timer notification (in milliseconds).
|
||||
*
|
||||
* @return The identifier of the new created timer notification.
|
||||
*
|
||||
* @exception java.lang.IllegalArgumentException The date is {@code null} or
|
||||
* the period is negative.
|
||||
*/
|
||||
// NPCTE fix for bugId 4464388, esc 0, MR , to be added after modification of jmx spec
|
||||
// public synchronized Integer addNotification(String type, String message, Serializable userData,
|
||||
// Date date, long period)
|
||||
// end of NPCTE fix for bugId 4464388 */
|
||||
|
||||
public Integer addNotification(String type, String message, Object userData,
|
||||
Date date, long period)
|
||||
throws java.lang.IllegalArgumentException;
|
||||
|
||||
/**
|
||||
* Creates a new timer notification with the specified <CODE>type</CODE>, <CODE>message</CODE>
|
||||
* and <CODE>userData</CODE> and inserts it into the list of notifications with a given date
|
||||
* and a null period and number of occurrences.
|
||||
* <P>
|
||||
* The timer notification will be handled once at the specified date.
|
||||
* <P>
|
||||
* If the timer notification to be inserted has a date that is before the current date,
|
||||
* the method behaves as if the specified date were the current date and the
|
||||
* notification is delivered immediately.
|
||||
*
|
||||
* @param type The timer notification type.
|
||||
* @param message The timer notification detailed message.
|
||||
* @param userData The timer notification user data object.
|
||||
* @param date The date when the notification occurs.
|
||||
*
|
||||
* @return The identifier of the new created timer notification.
|
||||
*
|
||||
* @exception java.lang.IllegalArgumentException The date is {@code null}.
|
||||
*/
|
||||
// NPCTE fix for bugId 4464388, esc 0, MR, to be added after modification of jmx spec
|
||||
// public synchronized Integer addNotification(String type, String message, Serializable userData, Date date)
|
||||
// throws java.lang.IllegalArgumentException {
|
||||
// end of NPCTE fix for bugId 4464388
|
||||
|
||||
public Integer addNotification(String type, String message, Object userData, Date date)
|
||||
throws java.lang.IllegalArgumentException;
|
||||
|
||||
/**
|
||||
* Removes the timer notification corresponding to the specified identifier from the list of notifications.
|
||||
*
|
||||
* @param id The timer notification identifier.
|
||||
*
|
||||
* @exception InstanceNotFoundException The specified identifier does not correspond to any timer notification
|
||||
* in the list of notifications of this timer MBean.
|
||||
*/
|
||||
public void removeNotification(Integer id) throws InstanceNotFoundException;
|
||||
|
||||
/**
|
||||
* Removes all the timer notifications corresponding to the specified type from the list of notifications.
|
||||
*
|
||||
* @param type The timer notification type.
|
||||
*
|
||||
* @exception InstanceNotFoundException The specified type does not correspond to any timer notification
|
||||
* in the list of notifications of this timer MBean.
|
||||
*/
|
||||
public void removeNotifications(String type) throws InstanceNotFoundException;
|
||||
|
||||
/**
|
||||
* Removes all the timer notifications from the list of notifications
|
||||
* and resets the counter used to update the timer notification identifiers.
|
||||
*/
|
||||
public void removeAllNotifications();
|
||||
|
||||
// GETTERS AND SETTERS
|
||||
//--------------------
|
||||
|
||||
/**
|
||||
* Gets the number of timer notifications registered into the list of notifications.
|
||||
*
|
||||
* @return The number of timer notifications.
|
||||
*/
|
||||
public int getNbNotifications();
|
||||
|
||||
/**
|
||||
* Gets all timer notification identifiers registered into the list of notifications.
|
||||
*
|
||||
* @return A vector of <CODE>Integer</CODE> objects containing all the timer notification identifiers.
|
||||
* <BR>The vector is empty if there is no timer notification registered for this timer MBean.
|
||||
*/
|
||||
public Vector<Integer> getAllNotificationIDs();
|
||||
|
||||
/**
|
||||
* Gets all the identifiers of timer notifications corresponding to the specified type.
|
||||
*
|
||||
* @param type The timer notification type.
|
||||
*
|
||||
* @return A vector of <CODE>Integer</CODE> objects containing all the identifiers of
|
||||
* timer notifications with the specified <CODE>type</CODE>.
|
||||
* <BR>The vector is empty if there is no timer notifications registered for this timer MBean
|
||||
* with the specified <CODE>type</CODE>.
|
||||
*/
|
||||
public Vector<Integer> getNotificationIDs(String type);
|
||||
|
||||
/**
|
||||
* Gets the timer notification type corresponding to the specified identifier.
|
||||
*
|
||||
* @param id The timer notification identifier.
|
||||
*
|
||||
* @return The timer notification type or null if the identifier is not mapped to any
|
||||
* timer notification registered for this timer MBean.
|
||||
*/
|
||||
public String getNotificationType(Integer id);
|
||||
|
||||
/**
|
||||
* Gets the timer notification detailed message corresponding to the specified identifier.
|
||||
*
|
||||
* @param id The timer notification identifier.
|
||||
*
|
||||
* @return The timer notification detailed message or null if the identifier is not mapped to any
|
||||
* timer notification registered for this timer MBean.
|
||||
*/
|
||||
public String getNotificationMessage(Integer id);
|
||||
|
||||
/**
|
||||
* Gets the timer notification user data object corresponding to the specified identifier.
|
||||
*
|
||||
* @param id The timer notification identifier.
|
||||
*
|
||||
* @return The timer notification user data object or null if the identifier is not mapped to any
|
||||
* timer notification registered for this timer MBean.
|
||||
*/
|
||||
// NPCTE fix for bugId 4464388, esc 0 , MR , 03 sept 2001 , to be added after modification of jmx spec
|
||||
//public Serializable getNotificationUserData(Integer id);
|
||||
// end of NPCTE fix for bugId 4464388
|
||||
public Object getNotificationUserData(Integer id);
|
||||
/**
|
||||
* Gets a copy of the date associated to a timer notification.
|
||||
*
|
||||
* @param id The timer notification identifier.
|
||||
*
|
||||
* @return A copy of the date or null if the identifier is not mapped to any
|
||||
* timer notification registered for this timer MBean.
|
||||
*/
|
||||
public Date getDate(Integer id);
|
||||
|
||||
/**
|
||||
* Gets a copy of the period (in milliseconds) associated to a timer notification.
|
||||
*
|
||||
* @param id The timer notification identifier.
|
||||
*
|
||||
* @return A copy of the period or null if the identifier is not mapped to any
|
||||
* timer notification registered for this timer MBean.
|
||||
*/
|
||||
public Long getPeriod(Integer id);
|
||||
|
||||
/**
|
||||
* Gets a copy of the remaining number of occurrences associated to a timer notification.
|
||||
*
|
||||
* @param id The timer notification identifier.
|
||||
*
|
||||
* @return A copy of the remaining number of occurrences or null if the identifier is not mapped to any
|
||||
* timer notification registered for this timer MBean.
|
||||
*/
|
||||
public Long getNbOccurences(Integer id);
|
||||
|
||||
/**
|
||||
* Gets a copy of the flag indicating whether a periodic notification is
|
||||
* executed at <i>fixed-delay</i> or at <i>fixed-rate</i>.
|
||||
*
|
||||
* @param id The timer notification identifier.
|
||||
*
|
||||
* @return A copy of the flag indicating whether a periodic notification is
|
||||
* executed at <i>fixed-delay</i> or at <i>fixed-rate</i>.
|
||||
*/
|
||||
public Boolean getFixedRate(Integer id);
|
||||
|
||||
/**
|
||||
* Gets the flag indicating whether or not the timer sends past notifications.
|
||||
*
|
||||
* @return The past notifications sending on/off flag value.
|
||||
*
|
||||
* @see #setSendPastNotifications
|
||||
*/
|
||||
public boolean getSendPastNotifications();
|
||||
|
||||
/**
|
||||
* Sets the flag indicating whether the timer sends past notifications or not.
|
||||
*
|
||||
* @param value The past notifications sending on/off flag value.
|
||||
*
|
||||
* @see #getSendPastNotifications
|
||||
*/
|
||||
public void setSendPastNotifications(boolean value);
|
||||
|
||||
/**
|
||||
* Tests whether the timer MBean is active.
|
||||
* A timer MBean is marked active when the {@link #start start} method is called.
|
||||
* It becomes inactive when the {@link #stop stop} method is called.
|
||||
*
|
||||
* @return <CODE>true</CODE> if the timer MBean is active, <CODE>false</CODE> otherwise.
|
||||
*/
|
||||
public boolean isActive();
|
||||
|
||||
/**
|
||||
* Tests whether the list of timer notifications is empty.
|
||||
*
|
||||
* @return <CODE>true</CODE> if the list of timer notifications is empty, <CODE>false</CODE> otherwise.
|
||||
*/
|
||||
public boolean isEmpty();
|
||||
}
|
||||
114
jdkSrc/jdk8/javax/management/timer/TimerNotification.java
Normal file
114
jdkSrc/jdk8/javax/management/timer/TimerNotification.java
Normal file
@@ -0,0 +1,114 @@
|
||||
/*
|
||||
* Copyright (c) 1999, 2007, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
package javax.management.timer;
|
||||
|
||||
/**
|
||||
* This class provides definitions of the notifications sent by timer MBeans.
|
||||
* <BR>It defines a timer notification identifier which allows to retrieve a timer notification
|
||||
* from the list of notifications of a timer MBean.
|
||||
* <P>
|
||||
* The timer notifications are created and handled by the timer MBean.
|
||||
*
|
||||
* @since 1.5
|
||||
*/
|
||||
public class TimerNotification extends javax.management.Notification {
|
||||
|
||||
|
||||
/* Serial version */
|
||||
private static final long serialVersionUID = 1798492029603825750L;
|
||||
|
||||
/*
|
||||
* ------------------------------------------
|
||||
* PRIVATE VARIABLES
|
||||
* ------------------------------------------
|
||||
*/
|
||||
|
||||
/**
|
||||
* @serial Timer notification identifier.
|
||||
* This identifier is used to retrieve a timer notification from the timer list of notifications.
|
||||
*/
|
||||
private Integer notificationID;
|
||||
|
||||
|
||||
/*
|
||||
* ------------------------------------------
|
||||
* CONSTRUCTORS
|
||||
* ------------------------------------------
|
||||
*/
|
||||
|
||||
/**
|
||||
* Creates a timer notification object.
|
||||
*
|
||||
* @param type The notification type.
|
||||
* @param source The notification producer.
|
||||
* @param sequenceNumber The notification sequence number within the source object.
|
||||
* @param timeStamp The notification emission date.
|
||||
* @param msg The notification message.
|
||||
* @param id The notification identifier.
|
||||
*
|
||||
*/
|
||||
public TimerNotification(String type, Object source, long sequenceNumber, long timeStamp, String msg, Integer id) {
|
||||
|
||||
super(type, source, sequenceNumber, timeStamp, msg);
|
||||
this.notificationID = id;
|
||||
}
|
||||
|
||||
/*
|
||||
* ------------------------------------------
|
||||
* PUBLIC METHODS
|
||||
* ------------------------------------------
|
||||
*/
|
||||
|
||||
// GETTERS AND SETTERS
|
||||
//--------------------
|
||||
|
||||
/**
|
||||
* Gets the identifier of this timer notification.
|
||||
*
|
||||
* @return The identifier.
|
||||
*/
|
||||
public Integer getNotificationID() {
|
||||
return notificationID;
|
||||
}
|
||||
|
||||
/*
|
||||
* ------------------------------------------
|
||||
* PACKAGE METHODS
|
||||
* ------------------------------------------
|
||||
*/
|
||||
|
||||
/**
|
||||
* Creates and returns a copy of this object.
|
||||
*
|
||||
*/
|
||||
Object cloneTimerNotification() {
|
||||
|
||||
TimerNotification clone = new TimerNotification(this.getType(), this.getSource(), this.getSequenceNumber(),
|
||||
this.getTimeStamp(), this.getMessage(), notificationID);
|
||||
clone.setUserData(this.getUserData());
|
||||
return clone;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user