Skip to content

Commit 766204d

Browse files
committed
Javadoc update
1 parent 96c0587 commit 766204d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

server/src/main/java/org/opensearch/common/blobstore/BlobContainer.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,6 @@ default void writeBlobConditionally(
199199
* this value is used in writing the blob to the repository.
200200
* @param failIfAlreadyExists
201201
* whether to throw a FileAlreadyExistsException if the given blob already exists
202-
* @param metadata
203-
* The metadata to be associate with the blob upload.
204202
* @param options
205203
* The {@link ConditionalWriteOptions} specifying the preconditions that must be met for the upload to proceed.
206204
* @param listener

server/src/main/java/org/opensearch/common/blobstore/ConditionalWrite.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ public Instant getUnmodifiedSince() {
8585
return unmodifiedSince;
8686
}
8787

88+
/**
89+
* Builder for {@link ConditionalWriteOptions}.
90+
* Allows fine-grained construction of conditional write criteria.
91+
*/
8892
public static final class Builder {
8993
private boolean ifNotExists = false;
9094
private boolean ifMatch = false;

0 commit comments

Comments
 (0)