Skip to content

Commit 9e8f502

Browse files
author
Anirav Kareddy
committed
Modified the names of all the getter functions to be lowercase
1 parent 767c58b commit 9e8f502

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/software/amazon/encryption/s3/internal/ReEncryptInstructionFileResponse.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,21 @@ public ReEncryptInstructionFileResponse(String bucket, String key, String instru
2727
/**
2828
* @return the S3 bucket containing the re-encrypted instruction file
2929
*/
30-
public String Bucket() {
30+
public String bucket() {
3131
return bucket;
3232
}
3333

3434
/**
3535
* @return the S3 object key of the encrypted object in S3
3636
*/
37-
public String Key() {
37+
public String key() {
3838
return key;
3939
}
4040

4141
/**
4242
* @return the instruction file suffix used for the instruction file
4343
*/
44-
public String InstructionFileSuffix() {
44+
public String instructionFileSuffix() {
4545
return instructionFileSuffix;
4646
}
4747
}

0 commit comments

Comments
 (0)