Class ChangelogBatchStartingPoint
java.lang.Object
com.unboundid.ldap.sdk.unboundidds.extensions.ChangelogBatchStartingPoint
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BeginningOfChangelogStartingPoint,ChangeTimeStartingPoint,EndOfChangelogStartingPoint,ResumeWithCSNStartingPoint,ResumeWithTokenStartingPoint
@NotExtensible
@ThreadSafety(level=INTERFACE_THREADSAFE)
public abstract class ChangelogBatchStartingPoint
extends Object
implements Serializable
This class defines the API that should be implemented by classes which may
represent a way to identify the start of a batch of changes to retrieve using
the
GetChangelogBatchExtendedRequest.
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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ChangelogBatchStartingPointdecode(ASN1Element element) Decodes the provided ASN.1 element as a changelog batch starting point.abstract ASN1Elementencode()Encodes this starting point value to an ASN.1 element suitable for inclusion in a changelog batch extended request.final StringtoString()Retrieves a string representation of this changelog batch starting point.abstract voidtoString(StringBuilder buffer) Appends a string representation of this changelog batch starting point to the provided buffer.
-
Constructor Details
-
ChangelogBatchStartingPoint
public ChangelogBatchStartingPoint()
-
-
Method Details
-
encode
Encodes this starting point value to an ASN.1 element suitable for inclusion in a changelog batch extended request.- Returns:
- The encoded representation of this starting point value.
-
decode
@NotNull public static ChangelogBatchStartingPoint decode(@NotNull ASN1Element element) throws LDAPException Decodes the provided ASN.1 element as a changelog batch starting point.- Parameters:
element- The ASN.1 element to be decoded. It must not benull.- Returns:
- The decoded changelog batch starting point.
- Throws:
LDAPException- If the provided ASN.1 element cannot be decoded as a changelog batch starting point.
-
toString
Retrieves a string representation of this changelog batch starting point. -
toString
Appends a string representation of this changelog batch starting point to the provided buffer.- Parameters:
buffer- The buffer to which the information should be appended.
-