Class JDAPResult

java.lang.Object
netscape.ldap.client.opers.JDAPResult
Direct Known Subclasses:
JDAPAddResponse, JDAPBindResponse, JDAPCompareResponse, JDAPDeleteResponse, JDAPExtendedResponse, JDAPModifyRDNResponse, JDAPModifyResponse, JDAPSearchResult

public class JDAPResult extends Object
This class implements the ldap result where stores the request status. It is the base class for all the response except search response. This object is sent from the server to the client interface.
 LDAPResult ::= SEQUENCE {
   resultCode ENUMERATED {
     success (0),
     ...
   },
   matchedDN LDAPDN,
   errorMessage LDAPString
 }
 
Note that LDAPv3 supports referral within the LDAP Result. The added component is:
 LDAPResult ::= SEQUENCE {
   ...
   errorMessage LDAPString,
   referral [3] Referral OPTIONAL
 }