Package com.unboundid.ldap.protocol
Interface LDAPResponse
-
- All Known Implementing Classes:
AbortedTransactionExtendedResult,BindResult,ChangelogEntryIntermediateResponse,CompareResult,ContentSyncInfoIntermediateResponse,DeliverOneTimePasswordExtendedResult,DeliverPasswordResetTokenExtendedResult,DeliverSingleUseTokenExtendedResult,EndBatchedTransactionExtendedResult,EndTransactionExtendedResult,ExtendedResult,GeneratePasswordExtendedResult,GenerateTOTPSharedSecretExtendedResult,GetBackupCompatibilityDescriptorExtendedResult,GetChangelogBatchExtendedResult,GetConfigurationExtendedResult,GetConnectionIDExtendedResult,GetPasswordQualityRequirementsExtendedResult,GetSubtreeAccessibilityExtendedResult,GetSupportedOTPDeliveryMechanismsExtendedResult,IdentifyBackupCompatibilityProblemsExtendedResult,InteractiveTransactionAbortedExtendedResult,IntermediateResponse,LDAPResult,ListConfigurationsExtendedResult,ListNotificationSubscriptionsExtendedResult,MissingChangelogEntriesIntermediateResponse,MultiUpdateExtendedResult,NoticeOfDisconnectionExtendedResult,PasswordModifyExtendedResult,PasswordPolicyStateExtendedResult,SearchResult,SearchResultEntry,SearchResultReference,StartBatchedTransactionExtendedResult,StartInteractiveTransactionExtendedResult,StartTransactionExtendedResult,StreamDirectoryValuesIntermediateResponse,StreamProxyValuesIntermediateResponse,WhoAmIExtendedResult
@InternalUseOnly @NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface LDAPResponse
This interface serves as a marker for classes in thecom.unboundid.ldap.sdkpackage that are responses which may be received from a directory server.
-
-
Field Summary
Fields Modifier and Type Field Description static Control[]NO_CONTROLSAn empty set of controls.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetMessageID()Retrieves the message ID for the LDAP message containing this response.voidtoString(java.lang.StringBuilder buffer)Appends a string representation of this LDAP response to the provided buffer.
-
-
-
Field Detail
-
NO_CONTROLS
static final Control[] NO_CONTROLS
An empty set of controls.
-
-
Method Detail
-
getMessageID
int getMessageID()
Retrieves the message ID for the LDAP message containing this response.- Returns:
- The message ID for the LDAP message containing this response.
-
toString
void toString(java.lang.StringBuilder buffer)
Appends a string representation of this LDAP response to the provided buffer.- Parameters:
buffer- The buffer to which the information should be appended.
-
-