This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.naming.ldap
class UnsolicitedNotificationEvent

java.lang.Object extended by java.util.EventObject extended by javax.naming.ldap.UnsolicitedNotificationEvent
All Implemented Interfaces:
Serializable

public class UnsolicitedNotificationEvent
extends EventObject

This class represents an event fired in response to an unsolicited notification sent by the LDAP server.


Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary

          Constructs a new instance of UnsolicitedNotificationEvent.
 
Method Summary
 void

          Invokes the notificationReceived() method on a listener using this event.
 UnsolicitedNotification

          Returns the unsolicited notification.
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UnsolicitedNotificationEvent

public UnsolicitedNotificationEvent(Object src,
                                    UnsolicitedNotification notice)
Constructs a new instance of UnsolicitedNotificationEvent.

Parameters:
src - The non-null source that fired the event.
notice - The non-null unsolicited notification.
Method Detail

dispatch

public void dispatch(UnsolicitedNotificationListener listener)
Invokes the notificationReceived() method on a listener using this event.

Parameters:
listener - The non-null listener on which to invoke notificationReceived.

getNotification

public UnsolicitedNotification getNotification()
Returns the unsolicited notification.

Returns:
The non-null unsolicited notification that caused this event to be fired.


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.