Class HeadAndTailSizeCollectSupportDataLogCaptureWindow
java.lang.Object
com.unboundid.ldap.sdk.unboundidds.extensions.CollectSupportDataLogCaptureWindow
com.unboundid.ldap.sdk.unboundidds.extensions.HeadAndTailSizeCollectSupportDataLogCaptureWindow
- All Implemented Interfaces:
Serializable
@NotMutable
@ThreadSafety(level=COMPLETELY_THREADSAFE)
public final class HeadAndTailSizeCollectSupportDataLogCaptureWindow
extends CollectSupportDataLogCaptureWindow
This class provides a collect support data log capture window implementation
that indicates that the tool should capture a specified amount of data (in
kilobytes) from the beginning and end of each log file when processing a
CollectSupportDataExtendedRequest.
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:
-
Field Summary
Fields inherited from class com.unboundid.ldap.sdk.unboundidds.extensions.CollectSupportDataLogCaptureWindow
TYPE_DURATION, TYPE_HEAD_AND_TAIL_SIZE, TYPE_TIME_WINDOW, TYPE_TOOL_DEFAULT -
Constructor Summary
ConstructorsConstructorDescriptionHeadAndTailSizeCollectSupportDataLogCaptureWindow(Integer headSizeKB, Integer tailSizeKB) Creates a new instance of this collect support data log capture window object that will capture the specified amount of data from the beginning and end of each log file. -
Method Summary
Modifier and TypeMethodDescriptionencode()Encodes this collect support data log capture window object to an ASN.1 element.Retrieves the amount of data in kilobytes to capture from the beginning of each log file, if specified.Retrieves the amount of data in kilobytes to capture from the end of each log file, if specified.voidtoString(StringBuilder buffer) Appends a string representation of this collect support data log capture window object to the provided buffer.Methods inherited from class com.unboundid.ldap.sdk.unboundidds.extensions.CollectSupportDataLogCaptureWindow
decode, toString
-
Constructor Details
-
HeadAndTailSizeCollectSupportDataLogCaptureWindow
public HeadAndTailSizeCollectSupportDataLogCaptureWindow(@Nullable Integer headSizeKB, @Nullable Integer tailSizeKB) Creates a new instance of this collect support data log capture window object that will capture the specified amount of data from the beginning and end of each log file.- Parameters:
headSizeKB- The amount of data in kilobytes to capture from the beginning of each log file. This may benullif the server should select an appropriate value.tailSizeKB- The amount of data in kilobytes to capture from the end of each log file. This may benullif the server should select an appropriate value.
-
-
Method Details
-
getHeadSizeKB
Retrieves the amount of data in kilobytes to capture from the beginning of each log file, if specified.- Returns:
- The amount of data in kilobytes to capture from the beginning of
each log file, or
nullif the server should select an appropriate value.
-
getTailSizeKB
Retrieves the amount of data in kilobytes to capture from the end of each log file, if specified.- Returns:
- The amount of data in kilobytes to capture from the end of each
log file, or
nullif the server should select an appropriate value.
-
encode
Encodes this collect support data log capture window object to an ASN.1 element.- Specified by:
encodein classCollectSupportDataLogCaptureWindow- Returns:
- The ASN.1 element that contains an encoded representation of this collect support data log capture window object.
-
toString
Appends a string representation of this collect support data log capture window object to the provided buffer.- Specified by:
toStringin classCollectSupportDataLogCaptureWindow- Parameters:
buffer- The buffer to which the string representation will be appended. It must not benull.
-