netscape.ldap
Class LDAPSearchResult

java.lang.Object
  extended bynetscape.ldap.LDAPMessage
      extended bynetscape.ldap.LDAPSearchResult
All Implemented Interfaces:
java.io.Serializable

public class LDAPSearchResult
extends LDAPMessage

A LDAPSearchResult object encapsulates a single search result.

Version:
1.0
See Also:
Serialized Form

Field Summary
(package private) static long serialVersionUID
           
 
Fields inherited from class netscape.ldap.LDAPMessage
ABANDON_REQUEST, ADD_REQUEST, ADD_RESPONSE, BIND_REQUEST, BIND_RESPONSE, COMPARE_REQUEST, COMPARE_RESPONSE, DEL_REQUEST, DEL_RESPONSE, EXTENDED_REQUEST, EXTENDED_RESPONSE, m_timeFormat, MODIFY_RDN_REQUEST, MODIFY_RDN_RESPONSE, MODIFY_REQUEST, MODIFY_RESPONSE, SEARCH_REQUEST, SEARCH_RESPONSE, SEARCH_RESULT, SEARCH_RESULT_REFERENCE, UNBIND_REQUEST
 
Constructor Summary
(package private) LDAPSearchResult(int msgid, JDAPSearchResponse rsp, LDAPControl[] controls)
          Constructor
 
Method Summary
 LDAPEntry getEntry()
          Returns the entry of a server search response.
 
Methods inherited from class netscape.ldap.LDAPMessage
getControls, getMessageID, getProtocolOp, getType, parseMessage, toString, toTraceString, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

static final long serialVersionUID
See Also:
Constant Field Values
Constructor Detail

LDAPSearchResult

LDAPSearchResult(int msgid,
                 JDAPSearchResponse rsp,
                 LDAPControl[] controls)
Constructor

Parameters:
msgid - message identifier
rsp - search operation response
controls - array of controls or null
See Also:
LDAPEntry
Method Detail

getEntry

public LDAPEntry getEntry()
Returns the entry of a server search response.

Returns:
an entry returned by the server in response to a search request.
See Also:
LDAPEntry