Class EntryRebalancingRequestAccessLogMessage
java.lang.Object
com.unboundid.ldap.sdk.unboundidds.logs.LogMessage
com.unboundid.ldap.sdk.unboundidds.logs.AccessLogMessage
com.unboundid.ldap.sdk.unboundidds.logs.EntryRebalancingRequestAccessLogMessage
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
EntryRebalancingResultAccessLogMessage
@NotMutable
@NotExtensible
@ThreadSafety(level=COMPLETELY_THREADSAFE)
public class EntryRebalancingRequestAccessLogMessage
extends AccessLogMessage
This class provides a data structure that holds information about a log
message that may appear in the Directory Server access log about a the
beginning of an entry rebalancing operation.
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:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new entry rebalancing request access log message from the provided log message.Creates a new entry rebalancing request access log message from the provided message string. -
Method Summary
Modifier and TypeMethodDescriptionRetrieves the message type for this access log message.final LongRetrieves the unique identifier assigned to the entry rebalancing operation.final IntegerRetrieves the maximum number of entries that may be contained in the subtree for it to be successfully migrated.final StringThe address and port of the backend server from which the subtree will be migrated.final StringRetrieves the name of the backend set containing the subtree to be migrated.final StringRetrieves the base DN of the subtree that will be migrated during the entry rebalancing operation.final StringRetrieves the address and port of the backend server to which the subtree will be migrated.final StringRetrieves the name of the backend set to which the subtree will be migrated.final LongRetrieves the connection ID for the connection that performed an operation to trigger the entry rebalancing operation.final LongRetrieves the operation ID for the operation that triggered the entry rebalancing operation.Methods inherited from class com.unboundid.ldap.sdk.unboundidds.logs.AccessLogMessage
getConnectionID, getInstanceName, getProductName, getStartupID, parseMethods inherited from class com.unboundid.ldap.sdk.unboundidds.logs.LogMessage
getNamedValue, getNamedValueAsBoolean, getNamedValueAsDouble, getNamedValueAsInteger, getNamedValueAsLong, getNamedValues, getTimestamp, getUnnamedValues, hasUnnamedValue, toString
-
Constructor Details
-
EntryRebalancingRequestAccessLogMessage
Creates a new entry rebalancing request access log message from the provided message string.- Parameters:
s- The string to be parsed as an entry rebalancing request access log message.- Throws:
LogException- If the provided string cannot be parsed as a valid log message.
-
EntryRebalancingRequestAccessLogMessage
Creates a new entry rebalancing request access log message from the provided log message.- Parameters:
m- The log message to be parsed as an entry rebalancing request access log message.
-
-
Method Details
-
getRebalancingOperationID
Retrieves the unique identifier assigned to the entry rebalancing operation.- Returns:
- The unique identifier assigned to the entry rebalancing operation,
or
nullif it is not included in the log message.
-
getTriggeringConnectionID
Retrieves the connection ID for the connection that performed an operation to trigger the entry rebalancing operation.- Returns:
- Retrieves the connection ID for the connection that performed an
operation to trigger the entry rebalancing operation, or
nullif it is not included in the log message.
-
getTriggeringOperationID
Retrieves the operation ID for the operation that triggered the entry rebalancing operation.- Returns:
- Retrieves the operation ID for the operation that triggered the
entry rebalancing operation, or
nullif it is not included in the log message.
-
getSubtreeBaseDN
Retrieves the base DN of the subtree that will be migrated during the entry rebalancing operation.- Returns:
- The base DN of the subtree that will be migrated during the entry
rebalancing operation, or
nullif it is not included in the log message.
-
getSizeLimit
Retrieves the maximum number of entries that may be contained in the subtree for it to be successfully migrated.- Returns:
- The maximum number of entries that may be contained in the subtree
for it to be successfully migrated, or
nullif it is not included in the log message.
-
getSourceBackendSetName
Retrieves the name of the backend set containing the subtree to be migrated.- Returns:
- The name of the backend set containing the subtree to be migrated,
or
nullif it is not included in the log message.
-
getSourceBackendServer
The address and port of the backend server from which the subtree will be migrated.- Returns:
- The address and port of the backend server from which the subtree
will be migrated, or
nullif it is not included in the log message.
-
getTargetBackendSetName
Retrieves the name of the backend set to which the subtree will be migrated.- Returns:
- The name of the backend set ot which the subtree will be migrated,
or
nullif it is not included in the log message.
-
getTargetBackendServer
Retrieves the address and port of the backend server to which the subtree will be migrated.- Returns:
- The address and port of the backend server to which the subtree
will be migrated, or
nullif it is not included in the log message.
-
getMessageType
Retrieves the message type for this access log message.- Specified by:
getMessageTypein classAccessLogMessage- Returns:
- The message type for this access log message.
-