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 anCollectSupportDataExtendedRequest
. It provides specific support for theCollectSupportDataOutputIntermediateResponse
andCollectSupportDataArchiveFragmentIntermediateResponse
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.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method 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 aCollectSupportDataExtendedRequest
.void
handleOutputIntermediateResponse(CollectSupportDataOutputIntermediateResponse response)
Performs any processing that may be necessary for the provided collect support data output intermediate response.
-
-
-
Method Detail
-
handleOutputIntermediateResponse
void handleOutputIntermediateResponse(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(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
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 aCollectSupportDataExtendedRequest
.- Parameters:
response
- The generic intermediate response to be processed. It must not benull
.
-
-