use of com.hazelcast.config.EncryptionAtRestConfig in project hazelcast by hazelcast.
the class MemberDomConfigProcessor method handleEncryptionAtRest.
private void handleEncryptionAtRest(Node encryptionAtRestRoot, HotRestartPersistenceConfig hrConfig) throws Exception {
EncryptionAtRestConfig encryptionAtRestConfig = new EncryptionAtRestConfig();
handleViaReflection(encryptionAtRestRoot, hrConfig, encryptionAtRestConfig, "secure-store");
for (Node secureStore : childElementsWithName(encryptionAtRestRoot, "secure-store", strict)) {
handleSecureStore(secureStore, encryptionAtRestConfig);
}
hrConfig.setEncryptionAtRestConfig(encryptionAtRestConfig);
}
Aggregations