Interface MinimalOperationResultAccessLogMessage
- All Known Subinterfaces:
OperationResultAccessLogMessage
- All Known Implementing Classes:
AbandonResultAccessLogMessage,AddAssuranceCompletedAccessLogMessage,AddResultAccessLogMessage,BindResultAccessLogMessage,CompareResultAccessLogMessage,DeleteAssuranceCompletedAccessLogMessage,DeleteResultAccessLogMessage,ExtendedResultAccessLogMessage,ModifyAssuranceCompletedAccessLogMessage,ModifyDNAssuranceCompletedAccessLogMessage,ModifyDNResultAccessLogMessage,ModifyResultAccessLogMessage,SearchResultAccessLogMessage
@NotExtensible
@ThreadSafety(level=INTERFACE_THREADSAFE)
public interface MinimalOperationResultAccessLogMessage
This interface defines a number of methods common to all types of operation
result access log messages.
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
Modifier and TypeMethodDescriptionRetrieves a message with additional information about the result of the operation.Retrieves the diagnostic message for the operation.Retrieves the matched DN for the operation.Retrieves the length of time in milliseconds required to process the operation.Retrieves the length of time in milliseconds the operation was required to wait on the work queue.Retrieves the list of referral URLs for the operation.Retrieves the result code for the operation.
-
Method Details
-
getResultCode
Retrieves the result code for the operation.- Returns:
- The result code for the operation, or
nullif it is not included in the log message.
-
getDiagnosticMessage
Retrieves the diagnostic message for the operation.- Returns:
- The diagnostic message for the operation, or
nullif it is not included in the log message.
-
getAdditionalInformation
Retrieves a message with additional information about the result of the operation.- Returns:
- A message with additional information about the result of the
operation, or
nullif it is not included in the log message.
-
getMatchedDN
Retrieves the matched DN for the operation.- Returns:
- The matched DN for the operation, or
nullif it is not included in the log message.
-
getReferralURLs
Retrieves the list of referral URLs for the operation.- Returns:
- The list of referral URLs for the operation, or an empty list if it is not included in the log message.
-
getProcessingTimeMillis
Retrieves the length of time in milliseconds required to process the operation.- Returns:
- The length of time in milliseconds required to process the
operation, or
nullif it is not included in the log message.
-
getQueueTimeMillis
Retrieves the length of time in milliseconds the operation was required to wait on the work queue.- Returns:
- The length of time in milliseconds the operation was required to
wait on the work queue, or
nullif it is not included in the log message.
-