Update license header in appc-dispatcher files
[appc.git] / appc-dispatcher / appc-dispatcher-common / appc-data-access-lib / src / main / java / org / onap / appc / dao / util / DBUtils.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.dao.util;
25
26 import com.att.eelf.configuration.EELFLogger;
27 import com.att.eelf.configuration.EELFManager;
28 import org.onap.appc.configuration.Configuration;
29 import org.onap.appc.configuration.ConfigurationFactory;
30 import java.sql.*;
31
32 /**
33  * @deprecated As of release 1802, replaced by {@link #(org.onap.appc.dao.util.dbcp.DBConnectionPool)}
34  * <p>
35  * This class provides the ability to access mysql database which has been @Deprecated because
36  * {@link #getConnection(String)} for each database request is not a good practice especially
37  * on appc performance.
38  * <p>
39  * If you would like to use appcctl (mysql database), bundle:appc-data-access-lib has created
40  * a database connection pool bean and exported as a service by using blueprint.
41  * If you would like to create a new database connection pool, refer to the way mentioned above.
42  * {@link org.onap.appc.dao.util.api.DBConnectionPoolService} has an example of how to use
43  * the connection pool.
44  */
45 @Deprecated
46 public class DBUtils {
47     private static final EELFLogger logger = EELFManager.getInstance().getLogger(DBUtils.class);
48     private static final String JDBC_DRIVER = "org.mariadb.jdbc.Driver";
49     private static final Configuration configuration = ConfigurationFactory.getConfiguration();
50
51     static {
52         try {
53             String driver = JDBC_DRIVER;
54             Class.forName(driver);
55         } catch (ClassNotFoundException e) {
56             logger.error(e.getMessage());
57         }
58     }
59
60     public static Connection getConnection(String schema) throws SQLException {
61         DriverManager.registerDriver(new org.mariadb.jdbc.Driver());
62         String dbURL = configuration.getProperty(String.format("org.onap.appc.db.url.%s", schema), "");
63         String userName = configuration.getProperty(String.format("org.onap.appc.db.user.%s", schema), "");
64         String password = configuration.getProperty(String.format("org.onap.appc.db.pass.%s", schema), "");
65         return DriverManager.getConnection(dbURL, userName, password);
66     }
67
68     public static boolean clearResources(ResultSet resultSet, PreparedStatement ptmt, Connection connection) {
69         boolean clearFlag = false;
70         try {
71             if (resultSet != null)
72                 resultSet.close();
73             if (ptmt != null)
74                 ptmt.close();
75             if (connection != null)
76                 connection.close();
77             clearFlag = true;
78         } catch (SQLException e) {
79             logger.error(e.getMessage());
80         }
81         return clearFlag;
82
83     }
84 }