Interface CollectSupportDataIntermediateResponseListener
@Extensible
@ThreadSafety(level=INTERFACE_NOT_THREADSAFE)
public interface CollectSupportDataIntermediateResponseListener
This interface provide an API that may be used to handle intermediate
response messages returned as part of processing for an
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.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidhandleArchiveFragmentIntermediateResponse(CollectSupportDataArchiveFragmentIntermediateResponse response) Performs any processing that may be necessary for the provided collect support data archive fragment intermediate response.voidPerforms any processing that may be necessary for any other type of intermediate response that may be returned in response to aCollectSupportDataExtendedRequest.voidPerforms any processing that may be necessary for the provided collect support data output intermediate response.
-
Method Details
-
handleOutputIntermediateResponse
void handleOutputIntermediateResponse(@NotNull CollectSupportDataOutputIntermediateResponse response) Performs any processing that may be necessary for the provided collect support data output intermediate response.- Parameters:
response- The collect support data output intermediate response to be processed. It must not benull.
-
handleArchiveFragmentIntermediateResponse
void handleArchiveFragmentIntermediateResponse(@NotNull CollectSupportDataArchiveFragmentIntermediateResponse response) Performs any processing that may be necessary for the provided collect support data archive fragment intermediate response.- Parameters:
response- The collect support data archive fragment intermediate response to be processed. It must not benull.
-
handleOtherIntermediateResponse
Performs any processing that may be necessary for any other type of intermediate response that may be returned in response to aCollectSupportDataExtendedRequest.- Parameters:
response- The generic intermediate response to be processed. It must not benull.
-