NotificationListenerProxypublic class NotificationListenerProxy extends Object implements NotificationListenerA Proxy for NotificationListener.
An object of NotificationListenerProxy is registered to the NotificationBroadcaster
for every notification listener that is registered by the client.
Whenever the NotificationBroadcaster calls this proxy's handleNotification method,
this proxy object will invoke ServerNotificationManager.fireNotification(...) |
Fields Summary |
---|
private String | id | private ServerNotificationManager | mgr | private ObjectName | objname | private Notification | notification | private static final Logger | logger |
Constructors Summary |
---|
public NotificationListenerProxy(ObjectName objname, ServerNotificationManager mgr, String id)/*,
DefaultConfiguration.LOGGER_RESOURCE_BUNDLE_NAME );*/
this.objname = objname;
this.mgr = mgr;
this.id = id;
|
|