Skip to content

Commit

Permalink
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</parent>

<properties>
<amazonaws.version>1.9.8</amazonaws.version>
<amazonaws.version>1.9.23</amazonaws.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,11 @@ public void setObjectAcl(String bucketName, String key, String versionId, Canned
delegate.setObjectAcl(bucketName, key, versionId, acl);
}

@Override
public void setObjectAcl(SetObjectAclRequest setObjectAclRequest) throws AmazonClientException, AmazonServiceException {
delegate.setObjectAcl(setObjectAclRequest);
}

@Override
public AccessControlList getBucketAcl(String bucketName) throws AmazonClientException, AmazonServiceException {
return delegate.getBucketAcl(bucketName);
Expand Down

0 comments on commit 09993f3

Please sign in to comment.