Skip to content

Commit 0d390d9

Browse files
committed
Fix Javadoc
1 parent 1483b83 commit 0d390d9

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

codegen/src/main/java/software/amazon/awssdk/codegen/docs/SyncOperationDocProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ protected void applyParams(DocumentationBuilder docBuilder) {
7777

7878
}
7979
if (opModel.hasStreamingOutput()) {
80-
docBuilder.param("streamingHandler", STREAM_RESPONSE_HANDLER_DOCS + getStreamingOutputDocs(),
80+
docBuilder.param("responseTransformer", STREAM_RESPONSE_HANDLER_DOCS + getStreamingOutputDocs(),
8181
opModel.getOutputShape().getShapeName(), getStreamingOutputDocs());
8282
}
8383
}

codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-json-client-class.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ public StreamingInputOperationResponse streamingInputOperation(StreamingInputOpe
477477
*
478478
* See documentation in {@link RequestBody} for additional details and which sources of data are supported.
479479
* The service documentation for the request content is as follows 'This be a stream'
480-
* @param streamingHandler
480+
* @param responseTransformer
481481
* Functional interface for processing the streamed response content. The unmarshalled
482482
* StreamingInputOutputOperationResponse and an InputStream to the response content are provided as
483483
* parameters to the callback. The callback may return a transformed type which will be the return value of
@@ -525,7 +525,7 @@ public <ReturnT> ReturnT streamingInputOutputOperation(
525525
* Some operation with a streaming output
526526
*
527527
* @param streamingOutputOperationRequest
528-
* @param streamingHandler
528+
* @param responseTransformer
529529
* Functional interface for processing the streamed response content. The unmarshalled
530530
* StreamingInputOutputOperationResponse and an InputStream to the response content are provided as
531531
* parameters to the callback. The callback may return a transformed type which will be the return value of

codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-json-client-interface.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -910,7 +910,7 @@ default StreamingInputOperationResponse streamingInputOperation(
910910
*
911911
* See documentation in {@link RequestBody} for additional details and which sources of data are supported.
912912
* The service documentation for the request content is as follows 'This be a stream'
913-
* @param streamingHandler
913+
* @param responseTransformer
914914
* Functional interface for processing the streamed response content. The unmarshalled
915915
* StreamingInputOutputOperationResponse and an InputStream to the response content are provided as
916916
* parameters to the callback. The callback may return a transformed type which will be the return value of
@@ -957,7 +957,7 @@ default <ReturnT> ReturnT streamingInputOutputOperation(
957957
*
958958
* See documentation in {@link RequestBody} for additional details and which sources of data are supported.
959959
* The service documentation for the request content is as follows 'This be a stream'
960-
* @param streamingHandler
960+
* @param responseTransformer
961961
* Functional interface for processing the streamed response content. The unmarshalled
962962
* StreamingInputOutputOperationResponse and an InputStream to the response content are provided as
963963
* parameters to the callback. The callback may return a transformed type which will be the return value of
@@ -1064,7 +1064,7 @@ default StreamingInputOutputOperationResponse streamingInputOutputOperation(
10641064
* Some operation with a streaming output
10651065
*
10661066
* @param streamingOutputOperationRequest
1067-
* @param streamingHandler
1067+
* @param responseTransformer
10681068
* Functional interface for processing the streamed response content. The unmarshalled
10691069
* StreamingInputOutputOperationResponse and an InputStream to the response content are provided as
10701070
* parameters to the callback. The callback may return a transformed type which will be the return value of
@@ -1099,7 +1099,7 @@ default <ReturnT> ReturnT streamingOutputOperation(StreamingOutputOperationReque
10991099
* @param streamingOutputOperationRequest
11001100
* A {@link Consumer} that will call methods on {@link StreamingOutputOperationRequest.Builder} to create a
11011101
* request.
1102-
* @param streamingHandler
1102+
* @param responseTransformer
11031103
* Functional interface for processing the streamed response content. The unmarshalled
11041104
* StreamingInputOutputOperationResponse and an InputStream to the response content are provided as
11051105
* parameters to the callback. The callback may return a transformed type which will be the return value of

0 commit comments

Comments
 (0)