- java.lang.Object
-
- javax.management.remote.TargetedNotification
-
- All Implemented Interfaces:
-
Serializable
public class TargetedNotification extends Object implements Serializable
A(通知,听众ID)对。
此类用于将发出的通知与其所针对的侦听器ID相关联。
- 从以下版本开始:
- 1.5
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 TargetedNotification(Notification notification, Integer listenerID)
构造一个TargetedNotification
对象。
-
-
-
构造方法详细信息
-
TargetedNotification
public TargetedNotification(Notification notification, Integer listenerID)
构造一个
TargetedNotification
对象。 该对象包含一对(通知,监听器ID)。 侦听器ID标识该通知所针对的客户端侦听器。 客户端侦听器ID是先前由连接器服务器返回的响应于addNotificationListener
请求的addNotificationListener
。- 参数
-
notification
- 从MBean服务器发出的通知。 -
listenerID
- 此通知所针对的侦听器的ID。 - 异常
-
IllegalArgumentException
- 如果 listenerID或 通知为空。
-
-
方法详细信息
-
getNotification
public Notification getNotification()
发出的通知。
- 结果
- 通知。
-
getListenerID
public Integer getListenerID()
通知所针对的侦听器的ID。
- 结果
- 侦听器ID。
-
-