File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/software/amazon/encryption/s3 Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1515 */
1616public class S3EncryptionClientUtilities {
1717
18- public static final String INSTRUCTION_FILE_SUFFIX = ".instruction" ;
18+ public static final String DEFAULT_INSTRUCTION_FILE_SUFFIX = ".instruction" ;
1919 public static final long MIN_ALLOWED_BUFFER_SIZE_BYTES = AlgorithmSuite .ALG_AES_256_GCM_IV12_TAG16_NO_KDF .cipherBlockSizeBytes ();
2020 public static final long MAX_ALLOWED_BUFFER_SIZE_BYTES = AlgorithmSuite .ALG_AES_256_GCM_IV12_TAG16_NO_KDF .cipherMaxContentLengthBytes ();
2121
@@ -32,7 +32,7 @@ public class S3EncryptionClientUtilities {
3232 */
3333 static List <ObjectIdentifier > instructionFileKeysToDelete (final DeleteObjectsRequest request ) {
3434 return request .delete ().objects ().stream ()
35- .map (o -> o .toBuilder ().key (o .key () + INSTRUCTION_FILE_SUFFIX ).build ())
35+ .map (o -> o .toBuilder ().key (o .key () + DEFAULT_INSTRUCTION_FILE_SUFFIX ).build ())
3636 .collect (Collectors .toList ());
3737 }
3838}
You can’t perform that action at this time.
0 commit comments