Searched refs:MonitorNotification (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DMonitorNotification.java73 public class MonitorNotification extends javax.management.Notification { class in inherits:javax.management.Notification
204 MonitorNotification(String type, Object source, long sequenceNumber, long timeStamp, String msg, method in class:MonitorNotification
H A DGaugeMonitor.java33 import static javax.management.monitor.MonitorNotification.*;
46 * MonitorNotification#THRESHOLD_HIGH_VALUE_EXCEEDED threshold high
56 * MonitorNotification#THRESHOLD_LOW_VALUE_EXCEEDED threshold low
194 "javax.management.monitor.MonitorNotification",
543 private synchronized MonitorNotification updateNotifications(
546 MonitorNotification n = null;
556 n = new MonitorNotification(
572 n = new MonitorNotification(
591 n = new MonitorNotification(
609 n = new MonitorNotification(
[all...]
H A DStringMonitor.java32 import static javax.management.monitor.MonitorNotification.*;
41 * a {@link MonitorNotification#STRING_TO_COMPARE_VALUE_MATCHED
48 * a {@link MonitorNotification#STRING_TO_COMPARE_VALUE_DIFFERED
121 "javax.management.monitor.MonitorNotification",
387 synchronized void onErrorNotification(MonitorNotification notification) {
399 synchronized MonitorNotification buildAlarmNotification(
453 return new MonitorNotification(type,
H A DCounterMonitor.java33 import static javax.management.monitor.MonitorNotification.*;
40 * MonitorNotification#THRESHOLD_VALUE_EXCEEDED threshold
204 "javax.management.monitor.MonitorNotification",
673 private synchronized MonitorNotification updateNotifications(
676 MonitorNotification n = null;
684 n = new MonitorNotification(THRESHOLD_VALUE_EXCEEDED,
916 synchronized void onErrorNotification(MonitorNotification notification) {
930 synchronized MonitorNotification buildAlarmNotification(
942 final MonitorNotification alarm;
H A DMonitor.java63 import static javax.management.monitor.MonitorNotification.*;
891 void onErrorNotification(MonitorNotification notification) {
900 MonitorNotification buildAlarmNotification(ObjectName object,
1102 MonitorNotification mn =
1103 new MonitorNotification(type,
1131 MonitorNotification alarm = null;
/openjdk7/jdk/test/javax/management/monitor/
H A DCounterMonitorTest.java87 MonitorNotification n = (MonitorNotification) notification;
91 if (type.equals(MonitorNotification.THRESHOLD_VALUE_EXCEEDED)) {
H A DCounterMonitorInitThresholdTest.java45 import javax.management.monitor.MonitorNotification;
67 if (n instanceof MonitorNotification) {
68 MonitorNotification mn = (MonitorNotification) n;
H A DCounterMonitorThresholdTest.java43 import javax.management.monitor.MonitorNotification;
75 if (n instanceof MonitorNotification) {
76 MonitorNotification mn = (MonitorNotification) n;
H A DReflectionExceptionTest.java46 import javax.management.monitor.MonitorNotification;
80 if (notification instanceof MonitorNotification) {
82 if (type.equals(MonitorNotification.RUNTIME_ERROR)) {
83 MonitorNotification mn = (MonitorNotification) notification;
H A DRuntimeExceptionTest.java45 import javax.management.monitor.MonitorNotification;
79 if (notification instanceof MonitorNotification) {
81 if (type.equals(MonitorNotification.RUNTIME_ERROR)) {
82 MonitorNotification mn = (MonitorNotification) notification;
H A DAttributeArbitraryDataTypeTest.java49 import javax.management.monitor.MonitorNotification;
188 MonitorNotification n = (MonitorNotification) notification;
192 if (type.equals(MonitorNotification.
199 } else if (type.equals(MonitorNotification.
206 } else if (type.equals(MonitorNotification.
H A DNonComparableAttributeValueTest.java63 MonitorNotification n = (MonitorNotification) notification;
68 MonitorNotification.OBSERVED_ATTRIBUTE_TYPE_ERROR)) {
H A DNullAttributeValueTest.java63 MonitorNotification n = (MonitorNotification) notification;
68 MonitorNotification.OBSERVED_ATTRIBUTE_TYPE_ERROR)) {
H A DStartStopTest.java52 import javax.management.monitor.MonitorNotification;
H A DThreadPoolTest.java52 import javax.management.monitor.MonitorNotification;
H A DMultiMonitorTest.java196 if (!(n instanceof MonitorNotification)) {

Completed in 60 milliseconds