Skip to content

Commit f501b43

Browse files
author
Anirav Kareddy
committed
cleaned up ReEncryptInstructionFileResponse class
1 parent 8b16a23 commit f501b43

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
/** Response object for re-encrypting instruction files.
44
* Contains the bucket, key, and instruction file suffix of the re-encrypted instruction file in S3.
55
*/
6-
76
public class ReEncryptInstructionFileResponse {
87
private final String bucket;
98
private final String key;
@@ -14,12 +13,15 @@ public ReEncryptInstructionFileResponse(String bucket, String key, String instru
1413
this.key = key;
1514
this.instructionFileSuffix = instructionFileSuffix;
1615
}
16+
1717
public String Bucket() {
1818
return bucket;
1919
}
20+
2021
public String Key() {
2122
return key;
2223
}
24+
2325
public String InstructionFileSuffix() {
2426
return instructionFileSuffix;
2527
}

0 commit comments

Comments
 (0)