java.lang.Object
java.util.EventObject
javax.naming.ldap.UnsolicitedNotificationEvent
- 所有已实现的接口:
-
Serializable
此类表示响应LDAP服务器发送的非请求通知而触发的事件。
- 自:
- 1.3
- 参见:
-
Field Summary
Fields declared in class java.util.EventObject
source
-
Constructor Summary
ConstructorDescriptionUnsolicitedNotificationEvent
(Object src, UnsolicitedNotification notice) 构造一个新的UnsolicitedNotificationEvent
实例。 -
Method Summary
Modifier and TypeMethodDescriptionvoid
dispatch
(UnsolicitedNotificationListener listener) 使用此事件在侦听器上调用notificationReceived()
方法。返回非请求通知。Methods declared in class java.util.EventObject
getSource, toString
-
Constructor Details
-
UnsolicitedNotificationEvent
构造一个新的UnsolicitedNotificationEvent
实例。- 参数:
-
src
- 触发事件的非空源。 -
notice
- 非空的非请求通知。
-
-
Method Details
-
getNotification
返回非请求通知。- 返回:
- 导致此事件触发的非空非请求通知。
-
dispatch
使用此事件在侦听器上调用notificationReceived()
方法。- 参数:
-
listener
- 要调用notificationReceived
的非空侦听器。
-