Searched defs:notif (Results 1 - 18 of 18) sorted by relevance

/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/jmx/
H A DNotificationSender.java49 public void sendNotification(final Notification notif); argument
H A DNotificationBuilder.java100 final Notification notif = new Notification(
109 notif.setUserData(userDataMap);
113 notif.setUserData(new HashMap<String, Serializable>());
116 return (notif);
149 final Notification notif = buildNew();
153 putMapData( notif, key, value );
156 return( notif );
167 final Notification notif = buildNew( message );
171 putMapData( notif, key, value );
174 return( notif );
180 putMapData( final Notification notif, final String keyToInsert, final Serializable valueToInsert) argument
194 putAllMapData( final Notification notif, final Map<String, T> additionalUserData) argument
[all...]
H A DNotificationListenerBase.java141 public abstract void handleNotification(final Notification notif, final Object handback); argument
234 final MBeanServerNotification notif = (MBeanServerNotification) notifIn;
236 final ObjectName objectName = notif.getMBeanName();
237 final String type = notif.getType();
H A DNotificationEmitterSupport.java300 protected void internalSendNotification(final Notification notif) argument
302 super.sendNotification(notif);
310 public synchronized void sendNotification(final Notification notif) argument
317 senderThread.enqueue(notif, this);
321 internalSendNotification(notif);
363 public QueueItem(final Notification notif, final NotificationEmitterSupport sender) argument
365 mNotif = notif;
385 final Notification notif,
388 mPendingNotifications.add(new QueueItem(notif, sender));
414 final CountDownLatchNofication notif
384 enqueue( final Notification notif, final NotificationEmitterSupport sender) argument
[all...]
H A DJMXUtil.java1744 public static final <T extends Serializable> Map<String, T> getUserDataMapString_Serializable(final Notification notif) argument
1746 final Object userData = notif.getUserData();
/glassfish-3.1.2/common/mbeanserver/src/main/java/org/glassfish/admin/mbeanserver/
H A DBootAMXListener.java75 public void handleNotification(final Notification notif, final Object handback) argument
77 if (notif instanceof JMXConnectionNotification)
79 final JMXConnectionNotification n = (JMXConnectionNotification) notif;
/glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/base/
H A DListenerTest.java66 final Notification notif,
65 handleNotification( final Notification notif, final Object handback) argument
H A DNotificationEmitterServiceTest.java94 final Notification notif,
96 mNotification = notif;
124 final Notification notif = builder.buildNew(TEST_MESSAGE);
125 builder.putMapData(notif, TEST_KEY, TEST_VALUE);
128 nes.emitNotification(notif);
134 assert (retrieved.getType().equals(notif.getType()));
145 builder.putMapData(notif, TEST_KEY, TEST_VALUE);
93 handleNotification( final Notification notif, final Object handback) argument
H A DNotificationServiceTest.java123 final Notification notif,
125 mReceived.add(notif);
122 handleNotification( final Notification notif, final Object handback) argument
/glassfish-3.1.2/admin/jmx-remote/common/src/main/java/com/sun/enterprise/admin/jmx/remote/notification/
H A DNotificationWrapper.java55 private Notification notif = null; field in class:NotificationWrapper
59 public NotificationWrapper(int type, ObjectName source, Notification notif) { argument
60 this.notif = notif;
65 public NotificationWrapper(ObjectName source, Notification notif) { argument
66 this.notif = notif;
80 return notif;
/glassfish-3.1.2/common/mejb/src/test/java/org/glassfish/admin/mejb/test/
H A DMEJBTest.java183 public void handleNotification( final Notification notif, final Object handback ) argument
185 System.out.println( "NotifListener: " + notif);
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/jmx/stringifier/
H A DNotificationStringifier.java106 final Notification notif = (Notification) o;
108 return (_stringify(notif).toString());
116 protected StringBuffer _stringify(Notification notif) argument
122 append(b, "#" + notif.getSequenceNumber());
127 append(b, new Date(notif.getTimeStamp()));
132 append(b, StringUtil.quote(notif.getSource()));
137 append(b, notif.getType());
142 append(b, StringUtil.quote(notif.getUserData()));
145 if (notif instanceof MBeanServerNotification)
148 final MBeanServerNotification n = (MBeanServerNotification) notif;
[all...]
/glassfish-3.1.2/common/amx-j2ee-impl/src/main/java/org/glassfish/admin/amx/impl/j2ee/
H A DDASJ2EEServerImpl.java130 public void handleNotification(final Notification notif, final Object ignore) { argument
131 final String notifType = notif.getType();
/glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/ext/logging/
H A DLoggingTest.java364 final Notification notif,
366 //printVerbose( "Received notif: " + notif );
368 if (notif.getMessage().indexOf(mID) >= 0) {
369 mNotifs.add(notif);
363 handleNotification( final Notification notif, final Object handback) argument
/glassfish-3.1.2/tests/quicklook/amx/src/test/amx/
H A DAMXTestBase.java188 final Notification notif,
191 if ( ! (notif instanceof MBeanServerNotification) )
195 final MBeanServerNotification mbs = (MBeanServerNotification)notif;
187 handleNotification( final Notification notif, final Object handback) argument
H A DDemo.java342 final Notification notif,
345 if ( ! (notif instanceof MBeanServerNotification) )
349 final MBeanServerNotification mbs = (MBeanServerNotification)notif;
341 handleNotification( final Notification notif, final Object handback) argument
/glassfish-3.1.2/common/amx-config-impl/src/main/java/org/glassfish/admin/amx/impl/config/
H A DAMXConfigLoader.java264 public void handleNotification(final Notification notif, final Object handback) { argument
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/core/
H A DUtil.java336 public static Map<String, Serializable> getAMXNotificationData(final Notification notif) { argument
338 JMXUtil.getUserDataMapString_Serializable(notif));
344 public static Serializable getAMXNotificationValue(final Notification notif, final String key) { argument
346 getAMXNotificationData(notif);
349 throw new IllegalArgumentException(notif.toString());
354 + " in " + notif);
366 final Notification notif,
369 final Serializable value = getAMXNotificationValue(notif, key);
365 getAMXNotificationValue( final Notification notif, final String key, final Class<T> theClass) argument

Completed in 64 milliseconds