Skip to content

Commit

Permalink
A few javadoc corrections (#4848)
Browse files Browse the repository at this point in the history
  • Loading branch information
debora-ito authored Jan 26, 2024
1 parent 11f38b6 commit ce49ac7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ default CompletableFuture<DeleteItemEnhancedResponse<T>> deleteItemWithResponse(
* </pre>
*
* @param request A {@link GetItemEnhancedRequest} with key and optional directives for retrieving an item from the table.
* @return a {@link CompletableFuture} of the item that was persisted in the database before it was deleted.
* @return a {@link CompletableFuture} of the retrieved item.
*/
default CompletableFuture<T> getItem(GetItemEnhancedRequest request) {
throw new UnsupportedOperationException();
Expand Down Expand Up @@ -423,7 +423,7 @@ default CompletableFuture<T> getItem(T keyItem) {
* </pre>
*
* @param request A {@link GetItemEnhancedRequest} with key and optional directives for retrieving an item from the table.
* @return a {@link CompletableFuture} of the item that was persisted in the database before it was deleted.
* @return a {@link CompletableFuture} containing the response returned by DynamoDB.
*/
default CompletableFuture<GetItemEnhancedResponse<T>> getItemWithResponse(GetItemEnhancedRequest request) {
throw new UnsupportedOperationException();
Expand Down Expand Up @@ -454,7 +454,7 @@ default CompletableFuture<GetItemEnhancedResponse<T>> getItemWithResponse(GetIte
*
* @param requestConsumer A {@link Consumer} of {@link GetItemEnhancedRequest.Builder} with key and optional directives
* for retrieving an item from the table.
* @return a {@link CompletableFuture} of the retrieved item
* @return a {@link CompletableFuture} containing the response returned by DynamoDB.
*/
default CompletableFuture<GetItemEnhancedResponse<T>> getItemWithResponse(
Consumer<GetItemEnhancedRequest.Builder> requestConsumer) {
Expand Down Expand Up @@ -931,7 +931,7 @@ default CompletableFuture<Void> deleteTable() {
}

/**
* Describes a table in DynamoDb with the name defined for this {@link DynamoDbAsyncTable).
* Describes a table in DynamoDb with the name defined for this {@link DynamoDbAsyncTable}.
* This operation calls the low-level DynamoDB API DescribeTable operation,
* see {@link DynamoDbAsyncClient#describeTable(DescribeTableRequest)}
*
Expand Down

0 comments on commit ce49ac7

Please sign in to comment.