Class ChangeTimeStartingPoint

  • All Implemented Interfaces:
    java.io.Serializable

    @NotMutable
    @ThreadSafety(level=COMPLETELY_THREADSAFE)
    public final class ChangeTimeStartingPoint
    extends ChangelogBatchStartingPoint
    This class provides an implementation of a changelog batch starting point which may be used to start a batch of changes at a specified time. The first change of the batch will be the first change on any server with a change time greater than or equal to the specified time.
    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:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ChangeTimeStartingPoint​(long changeTime)
      Creates a new instance of this changelog starting point using the provided start time.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      ASN1Element encode()
      Encodes this starting point value to an ASN.1 element suitable for inclusion in a changelog batch extended request.
      long getChangeTime()
      Retrieves the time of the oldest change which may be used as the starting point for the batch of changes.
      void toString​(java.lang.StringBuilder buffer)
      Appends a string representation of this changelog batch starting point to the provided buffer.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ChangeTimeStartingPoint

        public ChangeTimeStartingPoint​(long changeTime)
        Creates a new instance of this changelog starting point using the provided start time.
        Parameters:
        changeTime - The time of the oldest change which may be used as the starting point for the batch of changes.
    • Method Detail

      • getChangeTime

        public long getChangeTime()
        Retrieves the time of the oldest change which may be used as the starting point for the batch of changes.
        Returns:
        The time of the oldest change which may be used as the starting point for the batch of changes.
      • toString

        public void toString​(@NotNull
                             java.lang.StringBuilder buffer)
        Appends a string representation of this changelog batch starting point to the provided buffer.
        Specified by:
        toString in class ChangelogBatchStartingPoint
        Parameters:
        buffer - The buffer to which the information should be appended.