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
interface UnsolicitedNotification

All Superinterfaces:
HasControls

public interface UnsolicitedNotification
extends HasControls

This interface represents an unsolicited notification as defined in RFC 2251. An unsolicited notification is sent by the LDAP server to the LDAP client without any provocation from the client. Its format is that of an extended response (ExtendedResponse).


Method Summary
 NamingException

          Retrieves the exception as constructed using information sent by the server.
 String[]

          Retrieves the referral(s) sent by the server.
 
Methods inherited from class javax.naming.ldap.HasControls
getControls
 

Method Detail

getException

public NamingException getException()
Retrieves the exception as constructed using information sent by the server.

Returns:
A possibly null exception as constructed using information sent by the server. If null, a "success" status was indicated by the server.

getReferrals

public String[] getReferrals()
Retrieves the referral(s) sent by the server.

Returns:
A possibly null array of referrals, each of which is represented by a URL string. If null, no referral was sent by the server.


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/.