c8415ac08a01725a06d5977ba3a114b1c0d07b49
[oom/platform/cert-service.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * PROJECT
4  * ================================================================================
5  * Copyright (C) 2020 Nokia. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.aaf.certservice.certification.configuration;
22
23 import com.fasterxml.jackson.databind.ObjectMapper;
24 import org.onap.aaf.certservice.certification.configuration.model.CmpServers;
25 import org.onap.aaf.certservice.certification.configuration.model.Cmpv2Server;
26 import org.slf4j.Logger;
27 import org.slf4j.LoggerFactory;
28 import org.springframework.stereotype.Component;
29
30 import java.io.File;
31 import java.io.IOException;
32 import java.util.ArrayList;
33 import java.util.List;
34
35 @Component
36 class CmpServersConfigLoader {
37     private static final Logger LOGGER = LoggerFactory.getLogger(CmpServersConfigLoader.class);
38
39     List<Cmpv2Server> load(String path) {
40         List<Cmpv2Server> result = new ArrayList<>();
41         try {
42             result = loadConfigFromFile(path).getCmpv2Servers();
43             LOGGER.info(String.format("CMP Servers configuration successfully loaded from file '%s'", path));
44         } catch (IOException e) {
45             LOGGER.error("Exception occurred during CMP Servers configuration loading: ", e);
46         }
47         return result;
48     }
49
50     private CmpServers loadConfigFromFile(String path) throws IOException {
51         ObjectMapper objectMapper = new ObjectMapper();
52         return objectMapper.readValue(new File(path), CmpServers.class);
53     }
54 }