This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit e31e2ed76cc753a7cc934c7365229e108f088c97 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Fri Apr 2 07:28:48 2021 +0200 CAMEL-16185 - Improved Javadoc --- .../org/apache/camel/component/aws2/s3/AWS2S3Configuration.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/camel-aws/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Configuration.java b/components/camel-aws/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Configuration.java index b23e312..d135306 100644 --- a/components/camel-aws/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Configuration.java +++ b/components/camel-aws/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Configuration.java @@ -589,7 +589,7 @@ public class AWS2S3Configuration implements Cloneable { } /** - * If StreaMode is true a different way of uploading will be provided + * When stream mode is true the upload to bucket will be done in streaming */ public void setStreamMode(boolean streamMode) { this.streamMode = streamMode; @@ -611,7 +611,7 @@ public class AWS2S3Configuration implements Cloneable { } /** - * The batch size in stream mode + * The batch size (in bytes) in stream mode */ public void setBatchSize(int batchSize) { this.batchSize = batchSize; @@ -622,7 +622,7 @@ public class AWS2S3Configuration implements Cloneable { } /** - * The naming strategy to use + * The naming strategy to use in stream mode */ public void setNamingStrategy(AWSS3NamingStrategyEnum namingStrategy) { this.namingStrategy = namingStrategy;