You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/03/09 14:38:39 UTC

[camel] branch master updated (0323538 -> 79c12af)

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 0323538  Camel-AWS2-S3: Removed useless import
     new 190cebc  Camel-AWS2-S3: Removed downloadLink operation
     new 79c12af  Camel-AWS2-S3: Removed unused headers for downloadLink operation

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../main/java/org/apache/camel/component/aws2/s3/AWS2S3Constants.java   | 2 --
 .../main/java/org/apache/camel/component/aws2/s3/AWS2S3Operations.java  | 2 +-
 2 files changed, 1 insertion(+), 3 deletions(-)


[camel] 02/02: Camel-AWS2-S3: Removed unused headers for downloadLink operation

Posted by ac...@apache.org.
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 79c12af9d28aa325798383a79200a0360d0d338d
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Mar 9 15:37:59 2020 +0100

    Camel-AWS2-S3: Removed unused headers for downloadLink operation
---
 .../main/java/org/apache/camel/component/aws2/s3/AWS2S3Constants.java   | 2 --
 1 file changed, 2 deletions(-)

diff --git a/components/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Constants.java b/components/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Constants.java
index d916567..4231150 100644
--- a/components/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Constants.java
+++ b/components/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Constants.java
@@ -29,8 +29,6 @@ public interface AWS2S3Constants {
     String CONTENT_LENGTH = "CamelAwsS3ContentLength";
     String CONTENT_MD5 = "CamelAwsS3ContentMD5";
     String CONTENT_TYPE = "CamelAwsS3ContentType";
-    String DOWNLOAD_LINK_EXPIRATION = "CamelAwsS3DownloadLinkExpiration";
-    String DOWNLOAD_LINK = "CamelAwsS3DownloadLink";
     String E_TAG = "CamelAwsS3ETag";
     String KEY = "CamelAwsS3Key";
     String DESTINATION_KEY = "CamelAwsS3DestinationKey";


[camel] 01/02: Camel-AWS2-S3: Removed downloadLink operation

Posted by ac...@apache.org.
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 190cebc3de5701dd57b50a5772df2867dac03def
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Mar 9 15:33:20 2020 +0100

    Camel-AWS2-S3: Removed downloadLink operation
---
 .../main/java/org/apache/camel/component/aws2/s3/AWS2S3Operations.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Operations.java b/components/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Operations.java
index a04f2d6..46ff5eb 100644
--- a/components/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Operations.java
+++ b/components/camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/AWS2S3Operations.java
@@ -18,5 +18,5 @@ package org.apache.camel.component.aws2.s3;
 
 public enum AWS2S3Operations {
 
-    copyObject, listObjects, deleteObject, deleteBucket, listBuckets, downloadLink, getObject, getObjectRange
+    copyObject, listObjects, deleteObject, deleteBucket, listBuckets, getObject, getObjectRange
 }