[OOM-CMPv2] Create KeystoreCopier
[oom/platform/cert-service.git] / trustStoreMerger / src / main / java / org / onap / oom / truststoremerger / configuration / model / AppConfiguration.java
@@ -22,13 +22,13 @@ package org.onap.oom.truststoremerger.configuration.model;
 import java.util.Collections;
 import java.util.List;
 
-public final class MergerConfiguration {
+public final class AppConfiguration {
     private final List<String> truststoreFilePaths;
     private final List<String> truststoreFilePasswordPaths;
     private final List<String> sourceKeystorePaths;
     private final List<String> destinationKeystorePaths;
 
-    public MergerConfiguration(List<String> truststoreFilePaths,
+    public AppConfiguration(List<String> truststoreFilePaths,
         List<String> truststoreFilePasswordPaths, List<String> sourceKeystorePaths,
         List<String> destinationKeystorePaths) {
         this.truststoreFilePaths = List.copyOf(truststoreFilePaths);