2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.openecomp.sdc.applicationconfig.impl;
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.logging.api.Logger;
32 import org.openecomp.sdc.logging.api.LoggerFactory;
34 import java.util.Collection;
37 * Created by Talio on 8/8/2016.
39 public class ApplicationConfigManagerImpl implements ApplicationConfigManager {
41 private final Logger log = LoggerFactory.getLogger(this.getClass().getName());
43 private static final String SCHEMA_GENERATOR_INITIALIZATION_ERROR =
44 "SCHEMA_GENERATOR_INITIALIZATION_ERROR";
45 private static final String SCHEMA_GENERATOR_INITIALIZATION_ERROR_MSG =
46 "Error occurred while loading questionnaire schema templates";
47 private ApplicationConfig applicationConfig = new ApplicationConfigImpl();
50 public void insertIntoTable(String namespace, String key, String value) {
52 applicationConfig.insertValue(namespace, key, value);
53 } catch (Exception exception) {
54 log.debug("",exception);
55 throw new CoreException(new ErrorCode.ErrorCodeBuilder().withCategory(ErrorCategory
56 .APPLICATION).withId(SCHEMA_GENERATOR_INITIALIZATION_ERROR).withMessage(
57 SCHEMA_GENERATOR_INITIALIZATION_ERROR_MSG).build());
62 public ConfigurationData getFromTable(String namespace, String key) {
63 return applicationConfig.getConfigurationData(namespace, key);
67 public Collection<ApplicationConfigEntity> getListOfConfigurationByNamespace(String namespace) {
68 return applicationConfig.getListOfConfigurationByNamespace(namespace);