2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2017-2018 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.
 
  19  * ============LICENSE_END=========================================================
 
  22 package org.onap.appc.encryptiontool.wrapper;
 
  24 import com.google.common.collect.Lists;
 
  26 import java.io.IOException;
 
  28 import java.sql.SQLException;
 
  29 import java.util.List;
 
  30 import java.util.Properties;
 
  31 import javax.sql.rowset.CachedRowSet;
 
  32 import org.onap.ccsdk.sli.core.dblib.DBResourceManager;
 
  33 import org.slf4j.Logger;
 
  34 import org.slf4j.LoggerFactory;
 
  36 public class DbServiceUtil {
 
  38     private static final Logger log = LoggerFactory.getLogger(DbServiceUtil.class);
 
  39     private static DBResourceManager jdbcDataSource = null;
 
  41     private DbServiceUtil() {}
 
  43     public static boolean updateDB(String tableName, List<String> argList, String whereClause, String setCluase)
 
  46         String updatePasswordString = "update " + tableName + " set " + setCluase + " where " + whereClause;
 
  47         return jdbcDataSource.writeData(updatePasswordString, Lists.newArrayList(argList), Constants.SCHEMA_SDNCTL);
 
  50     public static CachedRowSet getData(String tableName, List<String> argList, String schema,
 
  51         String getselectData, String getDataClasue) throws SQLException {
 
  53         String selectQuery = "select " + getselectData + "from " + tableName + " where " + getDataClasue;
 
  54         return jdbcDataSource.getData(selectQuery, Lists.newArrayList(argList), schema);
 
  58     public static DBResourceManager initDbLibService() throws IOException {
 
  59         Properties props = new Properties();
 
  60         File file = new File("/opt/onap/appc/data/properties/dblib.properties");
 
  61         URL propURL = file.toURI().toURL();
 
  62         props.load(propURL.openStream());
 
  63         jdbcDataSource = new DBResourceManager(props);
 
  64         return jdbcDataSource;