Module java.naming

Class UnsolicitedNotificationEvent

java.lang.Object
java.util.EventObject
javax.naming.ldap.UnsolicitedNotificationEvent
所有已实现的接口:
Serializable

public class UnsolicitedNotificationEvent extends EventObject
此类表示响应LDAP服务器发送的非请求通知而触发的事件。
自:
1.3
参见:
  • Constructor Details

    • UnsolicitedNotificationEvent

      public UnsolicitedNotificationEvent(Object src, UnsolicitedNotification notice)
      构造一个新的UnsolicitedNotificationEvent实例。
      参数:
      src - 触发事件的非空源。
      notice - 非空的非请求通知。
  • Method Details

    • getNotification

      public UnsolicitedNotification getNotification()
      返回非请求通知。
      返回:
      导致此事件触发的非空非请求通知。
    • dispatch

      public void dispatch(UnsolicitedNotificationListener listener)
      使用此事件在侦听器上调用notificationReceived()方法。
      参数:
      listener - 要调用notificationReceived的非空侦听器。