Interface DataTableLockVersion.Builder

  • Method Details

    • dataTable

      DataTableLockVersion.Builder dataTable(String dataTable)

      The lock version for the data table itself. Used for optimistic locking and table versioning. Changes with each update to the table's metadata or structure.

      Parameters:
      dataTable - The lock version for the data table itself. Used for optimistic locking and table versioning. Changes with each update to the table's metadata or structure.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • attribute

      DataTableLockVersion.Builder attribute(String attribute)

      The lock version for a specific attribute. When the ValueLockLevel is ATTRIBUTE, this version changes when any value for the attribute changes. For other lock levels, it only changes when the attribute's properties are directly updated.

      Parameters:
      attribute - The lock version for a specific attribute. When the ValueLockLevel is ATTRIBUTE, this version changes when any value for the attribute changes. For other lock levels, it only changes when the attribute's properties are directly updated.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • primaryValues

      DataTableLockVersion.Builder primaryValues(String primaryValues)

      The lock version for a specific set of primary values (record). This includes the default record even if the table does not have any primary attributes. Used for record-level locking.

      Parameters:
      primaryValues - The lock version for a specific set of primary values (record). This includes the default record even if the table does not have any primary attributes. Used for record-level locking.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • value

      The lock version for a specific value. Changes each time the individual value is modified. Used for the finest-grained locking control.

      Parameters:
      value - The lock version for a specific value. Changes each time the individual value is modified. Used for the finest-grained locking control.
      Returns:
      Returns a reference to this object so that method calls can be chained together.