Skip to content

Commit 710222a

Browse files
committed
MAINT: missing interface
Signed-off-by: George Chen <qchea@amazon.com>
1 parent f1018a1 commit 710222a

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

  • data-prepper-plugins/encryption-plugin/src/main/java/org/opensearch/dataprepper/plugins/encryption
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
* Copyright OpenSearch Contributors
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
package org.opensearch.dataprepper.plugins.encryption;
7+
8+
import org.opensearch.dataprepper.model.encryption.EncryptionEngine;
9+
10+
public interface EncryptionSupplier {
11+
EncryptionEngine getEncryptionEngine(String encryptionId);
12+
13+
EncryptedDataKeySupplier getEncryptedDataKeySupplier(String encryptionId);
14+
}

0 commit comments

Comments
 (0)