Skip to content

Commit

Permalink
Adding new constructor to rotatingCloudEncryptionProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
cody-constine-ttd committed Dec 13, 2024
1 parent bfe7849 commit 9c9b1b9
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,11 @@ public class RotatingCloudEncryptionKeyApiProvider extends RotatingCloudEncrypti
private static final Logger LOGGER = LoggerFactory.getLogger(RotatingCloudEncryptionKeyApiProvider.class);

public RotatingCloudEncryptionKeyApiProvider(DownloadCloudStorage fileStreamProvider, StoreScope scope) {
super(fileStreamProvider, scope);
this.reader = new ApiStoreReader<>(fileStreamProvider, scope, new CloudEncryptionKeyParser(), "cloud_encryption_keys");
super(fileStreamProvider, scope, new ApiStoreReader<>(fileStreamProvider, scope, new CloudEncryptionKeyParser(), "cloud_encryption_keys"));
}

public RotatingCloudEncryptionKeyApiProvider(DownloadCloudStorage fileStreamProvider, StoreScope scope, ApiStoreReader<Map<Integer, CloudEncryptionKey>> reader) {
super(fileStreamProvider, scope);
this.reader = reader;
super(fileStreamProvider, scope, reader);
}


Expand Down

0 comments on commit 9c9b1b9

Please sign in to comment.