diff --git a/api/src/main/java/io/minio/S3Base.java b/api/src/main/java/io/minio/S3Base.java index a58e9ebc9..c9adc8a71 100644 --- a/api/src/main/java/io/minio/S3Base.java +++ b/api/src/main/java/io/minio/S3Base.java @@ -1847,7 +1847,7 @@ protected CompletableFuture statObjectAsync(StatObjectArgs a * @throws NoSuchAlgorithmException thrown to indicate missing of MD5 or SHA-256 digest library. * @throws XmlParserException thrown to indicate XML parsing error. */ - protected CompletableFuture abortMultipartUploadAsync( + public CompletableFuture abortMultipartUploadAsync( String bucketName, String region, String objectName, @@ -1955,7 +1955,7 @@ protected AbortMultipartUploadResponse abortMultipartUpload( * @throws NoSuchAlgorithmException thrown to indicate missing of MD5 or SHA-256 digest library. * @throws XmlParserException thrown to indicate XML parsing error. */ - protected CompletableFuture completeMultipartUploadAsync( + public CompletableFuture completeMultipartUploadAsync( String bucketName, String region, String objectName, @@ -2106,7 +2106,7 @@ protected ObjectWriteResponse completeMultipartUpload( * @throws NoSuchAlgorithmException thrown to indicate missing of MD5 or SHA-256 digest library. * @throws XmlParserException thrown to indicate XML parsing error. */ - protected CompletableFuture createMultipartUploadAsync( + public CompletableFuture createMultipartUploadAsync( String bucketName, String region, String objectName, @@ -3168,7 +3168,7 @@ protected ObjectWriteResponse putObject( * @throws NoSuchAlgorithmException thrown to indicate missing of MD5 or SHA-256 digest library. * @throws XmlParserException thrown to indicate XML parsing error. */ - protected CompletableFuture listMultipartUploadsAsync( + public CompletableFuture listMultipartUploadsAsync( String bucketName, String region, String delimiter, @@ -3317,7 +3317,7 @@ protected ListMultipartUploadsResponse listMultipartUploads( * @throws NoSuchAlgorithmException thrown to indicate missing of MD5 or SHA-256 digest library. * @throws XmlParserException thrown to indicate XML parsing error. */ - protected CompletableFuture listPartsAsync( + public CompletableFuture listPartsAsync( String bucketName, String region, String objectName, @@ -3453,7 +3453,7 @@ protected ListPartsResponse listParts( * @throws NoSuchAlgorithmException thrown to indicate missing of MD5 or SHA-256 digest library. * @throws XmlParserException thrown to indicate XML parsing error. */ - protected CompletableFuture uploadPartAsync( + public CompletableFuture uploadPartAsync( String bucketName, String region, String objectName, @@ -3527,7 +3527,7 @@ protected CompletableFuture uploadPartAsync( * @throws NoSuchAlgorithmException thrown to indicate missing of MD5 or SHA-256 digest library. * @throws XmlParserException thrown to indicate XML parsing error. */ - protected CompletableFuture uploadPartAsync( + public CompletableFuture uploadPartAsync( String bucketName, String region, String objectName, @@ -3730,7 +3730,7 @@ protected UploadPartCopyResponse uploadPartCopy( * @throws NoSuchAlgorithmException thrown to indicate missing of MD5 or SHA-256 digest library. * @throws XmlParserException thrown to indicate XML parsing error. */ - protected CompletableFuture uploadPartCopyAsync( + public CompletableFuture uploadPartCopyAsync( String bucketName, String region, String objectName,