@Extensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface CollectSupportDataIntermediateResponseListener
CollectSupportDataExtendedRequest
. It provides specific support for
the CollectSupportDataOutputIntermediateResponse
and
CollectSupportDataArchiveFragmentIntermediateResponse
intermediate
response types, but also allows handling other types of intermediate
responses as well.
NOTE: This class, and other classes within the
com.unboundid.ldap.sdk.unboundidds
package structure, are only
supported for use against Ping Identity, UnboundID, and
Nokia/Alcatel-Lucent 8661 server products. These classes provide support
for proprietary functionality or for external specifications that are not
considered stable or mature enough to be guaranteed to work in an
interoperable way with other types of LDAP servers.
Modifier and Type | Method and Description |
---|---|
void |
handleArchiveFragmentIntermediateResponse(CollectSupportDataArchiveFragmentIntermediateResponse response)
Performs any processing that may be necessary for the provided collect
support data archive fragment intermediate response.
|
void |
handleOtherIntermediateResponse(IntermediateResponse response)
Performs any processing that may be necessary for any other type of
intermediate response that may be returned in response to a
CollectSupportDataExtendedRequest . |
void |
handleOutputIntermediateResponse(CollectSupportDataOutputIntermediateResponse response)
Performs any processing that may be necessary for the provided collect
support data output intermediate response.
|
void handleOutputIntermediateResponse(@NotNull CollectSupportDataOutputIntermediateResponse response)
response
- The collect support data output intermediate response to
be processed. It must not be null
.void handleArchiveFragmentIntermediateResponse(@NotNull CollectSupportDataArchiveFragmentIntermediateResponse response)
response
- The collect support data archive fragment intermediate
response to be processed. It must not be null
.void handleOtherIntermediateResponse(@NotNull IntermediateResponse response)
CollectSupportDataExtendedRequest
.response
- The generic intermediate response to be processed. It
must not be null
.