-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -106,7 +106,7 @@ public void after() { | |
} | ||
|
||
/** | ||
* Initiates a multipart upload. | ||
* Initiate a multipart upload. | ||
* | ||
* @return the upload id | ||
*/ | ||
|
@@ -132,7 +132,7 @@ public String initiateMultipartUpload() throws Exception { | |
} | ||
|
||
/** | ||
* Uploads parts. | ||
* Upload parts. | ||
* | ||
* @param uploadId the upload id | ||
* @param objects the objects to upload | ||
|
@@ -168,7 +168,7 @@ public void uploadPartWithNonExistentUpload() throws Exception { | |
} | ||
|
||
/** | ||
* complete multipart upload. | ||
* Complete multipart upload. | ||
* @param uploadId the upload id | ||
* @param partList the list of part number | ||
* @throws Exception | ||
|
@@ -186,7 +186,7 @@ public void completeMultipartUpload(String uploadId, List<Part> partList) throws | |
} | ||
|
||
/** | ||
* complete multipart upload with 50 objects. | ||
* Complete multipart upload with 50 objects. | ||
* @throws Exception | ||
*/ | ||
@Test | ||
|
@@ -216,7 +216,7 @@ public void completeMultipartUpload() throws Exception { | |
} | ||
|
||
/** | ||
* complete multipart upload with an empty part list. | ||
* Complete multipart upload with an empty part list. | ||
* @throws Exception | ||
*/ | ||
@Test | ||
|
@@ -230,7 +230,7 @@ public void completeMultipartUploadWithEmptyPart() throws Exception { | |
} | ||
|
||
/** | ||
* complete multipart upload with the subset of uploaded parts. | ||
* Complete multipart upload with the subsequence of uploaded parts. | ||
* @throws Exception | ||
*/ | ||
@Test | ||
|
@@ -254,7 +254,7 @@ public void completeMultipartUploadWithPartialParts() throws Exception { | |
} | ||
|
||
/** | ||
* complete multipart upload with the invalid part list. | ||
* Complete multipart upload with non-existent part number. | ||
* @throws Exception | ||
*/ | ||
@Test | ||
|
@@ -285,7 +285,7 @@ public void completeMultipartUploadWithInvalidPart() throws Exception { | |
} | ||
|
||
/** | ||
* complete multipart upload with the invalid part order. | ||
* Complete multipart upload with invalid part order. | ||
* @throws Exception | ||
*/ | ||
@Test | ||
|
@@ -329,7 +329,7 @@ public void completeMultipartUploadWithInvalidPartOrder() throws Exception { | |
} | ||
|
||
/** | ||
* complete multipart upload with the part size smaller than the limitation. | ||
* Complete multipart upload with the part size smaller than the minimum. | ||
* @throws Exception | ||
*/ | ||
@Test | ||
|
@@ -354,7 +354,7 @@ public void completeMultipartUploadWithTooSmallEntity() throws Exception { | |
} | ||
|
||
/** | ||
* complete multipart upload with non-existent upload id. | ||
* Complete multipart upload with non-existent upload id. | ||
* @throws Exception | ||
*/ | ||
@Test | ||
|
@@ -370,7 +370,7 @@ public void completeMultipartUploadWithNonExistentUpload() throws Exception { | |
} | ||
|
||
/** | ||
* abort multipart upload. | ||
* Abort multipart upload. | ||
* @throws Exception | ||
*/ | ||
@Test | ||
|
@@ -389,7 +389,7 @@ public void abortMultipartUpload() throws Exception { | |
} | ||
|
||
/** | ||
* abort multipart upload with non-existent upload id. | ||
* Abort multipart upload with non-existent upload id. | ||
* @throws Exception | ||
*/ | ||
@Test | ||
|
@@ -405,7 +405,7 @@ public void abortMultipartUploadWithNonExistentUpload() throws Exception { | |
} | ||
|
||
/** | ||
* get default options with username {@code [email protected]}. | ||
* Get default options with username {@code [email protected]}. | ||
* @return | ||
*/ | ||
@Override | ||
|