This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new cdf60bf57da S3Constants class fix for AWSS3Constants cdf60bf57da is described below commit cdf60bf57da5e3ac35356c869eec9fdcaada61ff Author: Daniel Dias <daniel.dias.analist...@gmail.com> AuthorDate: Mon Jun 13 17:59:37 2022 -0300 S3Constants class fix for AWSS3Constants --- .../src/main/docs/aws2-s3-component.adoc | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/components/camel-aws/camel-aws2-s3/src/main/docs/aws2-s3-component.adoc b/components/camel-aws/camel-aws2-s3/src/main/docs/aws2-s3-component.adoc index 7f287efb1fb..4f43910ac09 100644 --- a/components/camel-aws/camel-aws2-s3/src/main/docs/aws2-s3-component.adoc +++ b/components/camel-aws/camel-aws2-s3/src/main/docs/aws2-s3-component.adoc @@ -112,7 +112,7 @@ To use AWS KMS to encrypt/decrypt data by using AWS infrastructure you can use t [source,java] -------------------------------------------------------------------------------- from("file:tmp/test?fileName=test.txt") - .setHeader(S3Constants.KEY, constant("testFile")) + .setHeader(AWS2S3Constants.KEY, constant("testFile")) .to("aws2-s3://mybucket?amazonS3Client=#client&useAwsKMS=true&awsKMSKeyId=3f0637ad-296a-3dfe-a796-e60654fb128c"); -------------------------------------------------------------------------------- @@ -141,7 +141,7 @@ For more information about this you can look at https://docs.aws.amazon.com/sdk- @Override public void process(Exchange exchange) throws Exception { - exchange.getIn().setHeader(S3Constants.KEY, "camel.txt"); + exchange.getIn().setHeader(AWS2S3Constants.KEY, "camel.txt"); exchange.getIn().setBody("Camel rocks!"); } }) @@ -177,9 +177,9 @@ This operation will perform a multipart upload of the file empty.txt with based @Override public void process(Exchange exchange) throws Exception { - exchange.getIn().setHeader(S3Constants.BUCKET_DESTINATION_NAME, "camelDestinationBucket"); - exchange.getIn().setHeader(S3Constants.KEY, "camelKey"); - exchange.getIn().setHeader(S3Constants.DESTINATION_KEY, "camelDestinationKey"); + exchange.getIn().setHeader(AWS2S3Constants.BUCKET_DESTINATION_NAME, "camelDestinationBucket"); + exchange.getIn().setHeader(AWS2S3Constants.KEY, "camelKey"); + exchange.getIn().setHeader(AWS2S3Constants.DESTINATION_KEY, "camelDestinationKey"); } }) .to("aws2-s3://mycamelbucket?amazonS3Client=#amazonS3Client&operation=copyObject") @@ -196,7 +196,7 @@ This operation will copy the object with the name expressed in the header camelD @Override public void process(Exchange exchange) throws Exception { - exchange.getIn().setHeader(S3Constants.KEY, "camelKey"); + exchange.getIn().setHeader(AWS2S3Constants.KEY, "camelKey"); } }) .to("aws2-s3://mycamelbucket?amazonS3Client=#amazonS3Client&operation=deleteObject") @@ -246,7 +246,7 @@ This operation will list the objects in the mycamelbucket bucket @Override public void process(Exchange exchange) throws Exception { - exchange.getIn().setHeader(S3Constants.KEY, "camelKey"); + exchange.getIn().setHeader(AWS2S3Constants.KEY, "camelKey"); } }) .to("aws2-s3://mycamelbucket?amazonS3Client=#amazonS3Client&operation=getObject") @@ -263,9 +263,9 @@ This operation will return an S3Object instance related to the camelKey object i @Override public void process(Exchange exchange) throws Exception { - exchange.getIn().setHeader(S3Constants.KEY, "camelKey"); - exchange.getIn().setHeader(S3Constants.RANGE_START, "0"); - exchange.getIn().setHeader(S3Constants.RANGE_END, "9"); + exchange.getIn().setHeader(AWS2S3Constants.KEY, "camelKey"); + exchange.getIn().setHeader(AWS2S3Constants.RANGE_START, "0"); + exchange.getIn().setHeader(AWS2S3Constants.RANGE_END, "9"); } }) .to("aws2-s3://mycamelbucket?amazonS3Client=#amazonS3Client&operation=getObjectRange") @@ -282,7 +282,7 @@ This operation will return an S3Object instance related to the camelKey object i @Override public void process(Exchange exchange) throws Exception { - exchange.getIn().setHeader(S3Constants.KEY, "camelKey"); + exchange.getIn().setHeader(AWS2S3Constants.KEY, "camelKey"); } }) .to("aws2-s3://mycamelbucket?accessKey=xxx&secretKey=yyy®ion=region&operation=createDownloadLink")