[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / backend / openecomp-sdc-application-config-manager / src / main / java / org / openecomp / sdc / applicationconfig / impl / ApplicationConfigManagerImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. 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.openecomp.sdc.applicationconfig.impl;
22
23 import org.openecomp.core.utilities.applicationconfig.ApplicationConfig;
24 import org.openecomp.core.utilities.applicationconfig.dao.type.ApplicationConfigEntity;
25 import org.openecomp.core.utilities.applicationconfig.impl.ApplicationConfigImpl;
26 import org.openecomp.core.utilities.applicationconfig.type.ConfigurationData;
27 import org.openecomp.sdc.applicationconfig.ApplicationConfigManager;
28 import org.openecomp.sdc.common.errors.CoreException;
29 import org.openecomp.sdc.common.errors.ErrorCategory;
30 import org.openecomp.sdc.common.errors.ErrorCode;
31 import org.openecomp.sdc.datatypes.error.ErrorLevel;
32 import org.openecomp.sdc.logging.context.impl.MdcDataErrorMessage;
33 import org.openecomp.sdc.logging.types.LoggerConstants;
34 import org.openecomp.sdc.logging.types.LoggerErrorCode;
35 import org.openecomp.sdc.logging.types.LoggerErrorDescription;
36 import org.openecomp.sdc.logging.types.LoggerTragetServiceName;
37
38 import java.util.Collection;
39
40 /**
41  * Created by Talio on 8/8/2016.
42  */
43 public class ApplicationConfigManagerImpl implements ApplicationConfigManager {
44   private static final String SCHEMA_GENERATOR_INITIALIZATION_ERROR =
45       "SCHEMA_GENERATOR_INITIALIZATION_ERROR";
46   private static final String SCHEMA_GENERATOR_INITIALIZATION_ERROR_MSG =
47       "Error occurred while loading questionnaire schema templates";
48   private ApplicationConfig applicationConfig = new ApplicationConfigImpl();
49
50   @Override
51   public void insertIntoTable(String namespace, String key, String value) {
52     try {
53       applicationConfig.insertValue(namespace, key, value);
54     } catch (Exception exception) {
55       MdcDataErrorMessage.createErrorMessageAndUpdateMdc(LoggerConstants.TARGET_ENTITY_DB,
56           LoggerTragetServiceName.INSERT_INTO_APPLICATION_CONFIG, ErrorLevel.ERROR.name(),
57           LoggerErrorCode.DATA_ERROR.getErrorCode(),
58           LoggerErrorDescription.INSERT_INTO_APPLICATION_CONFIG);
59       throw new CoreException(new ErrorCode.ErrorCodeBuilder().withCategory(ErrorCategory
60           .APPLICATION).withId(SCHEMA_GENERATOR_INITIALIZATION_ERROR).withMessage(
61           SCHEMA_GENERATOR_INITIALIZATION_ERROR_MSG).build());
62     }
63   }
64
65   @Override
66   public ConfigurationData getFromTable(String namespace, String key) {
67     return applicationConfig.getConfigurationData(namespace, key);
68   }
69
70   @Override
71   public Collection<ApplicationConfigEntity> getListOfConfigurationByNamespace(String namespace) {
72     return applicationConfig.getListOfConfigurationByNamespace(namespace);
73   }
74 }