@NotExtensible @ThreadSafety(level=INTERFACE_THREADSAFE) public interface SearchResultProvider
Modifier and Type | Method and Description |
---|---|
boolean |
sendEntry(com.unboundid.ldap.sdk.SearchResultEntry entry,
boolean applyTransformations)
Attempts to return the provided search result entry to the client.
|
boolean |
sendReference(com.unboundid.ldap.sdk.SearchResultReference reference,
boolean applyTransformations)
Attempts to return the provided search result reference to the client.
|
boolean sendEntry(com.unboundid.ldap.sdk.SearchResultEntry entry, boolean applyTransformations)
entry
- The entry to return to the client.applyTransformations
- Indicates whether to apply any configured
proxy transformations to the entry before
returning it to the client.true
if the caller may attempt to send additional entries
or references to the client if desired, or false
if not
(e.g., because the size limit or time limit has been exceeded, or
because the connection has been closed).boolean sendReference(com.unboundid.ldap.sdk.SearchResultReference reference, boolean applyTransformations)
reference
- The reference to return to the client.applyTransformations
- Indicates whether to apply any configured
proxy transformations to the reference before
returning it to the client.true
if the caller may attempt to send additional entries
or references to the client if desired, or false
if not
(e.g., because the size limit or time limit has been exceeded, or
because the connection has been closed).