@Extensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface ChangelogEntryListener
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 |
handleChangelogEntry(ChangelogEntryIntermediateResponse ir)
Performs any processing necessary for a changelog entry intermediate
response returned by the server.
|
void |
handleMissingChangelogEntries(MissingChangelogEntriesIntermediateResponse ir)
Performs any processing necessary for a missing changelog entries
intermediate response returned by the server.
|
void |
handleOtherIntermediateResponse(IntermediateResponse ir)
Performs any processing necessary for some other type of intermediate
response returned during processing for a get changelog batch extended
operation.
|
void handleChangelogEntry(@NotNull ChangelogEntryIntermediateResponse ir)
ir
- The changelog entry intermediate response that was returned by
the server.void handleMissingChangelogEntries(@NotNull MissingChangelogEntriesIntermediateResponse ir)
ir
- The missing changelog entries intermediate response that was
returned by the server.void handleOtherIntermediateResponse(@NotNull IntermediateResponse ir)
ir
- The generic entry intermediate response that was returned by
the server.