2 * Copyright © 2017-2018 AT&T Intellectual Property.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package org.onap.ccsdk.cds.blueprintsprocessor.db
19 import org.onap.ccsdk.cds.blueprintsprocessor.core.BluePrintPropertiesService
20 import org.onap.ccsdk.cds.blueprintsprocessor.db.primary.BluePrintDBLibPropertySevice
21 import org.onap.ccsdk.cds.blueprintsprocessor.db.primary.PrimaryDBLibGenericService
22 import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintDependencyService
23 import org.springframework.boot.context.properties.EnableConfigurationProperties
24 import org.springframework.context.annotation.Bean
25 import org.springframework.context.annotation.Configuration
28 @EnableConfigurationProperties
29 open class BluePrintDBLibConfiguration(private var bluePrintPropertiesService: BluePrintPropertiesService) {
31 @Bean("primary-database-properties")
32 open fun getPrimaryProperties(): PrimaryDataSourceProperties {
33 return bluePrintPropertiesService.propertyBeanType(DBLibConstants.PREFIX_DB,
34 PrimaryDataSourceProperties::class.java)
39 * Exposed Dependency Service by this SSH Lib Module
41 fun BluePrintDependencyService.dbLibPropertyService(): BluePrintDBLibPropertySevice =
42 instance(BluePrintDBLibPropertySevice::class)
44 fun BluePrintDependencyService.primaryDBLibGenericService(): BluePrintDBLibGenericService =
45 instance(PrimaryDBLibGenericService::class)
48 class DBLibConstants {
50 const val PREFIX_DB: String = "blueprintsprocessor.db"
53 const val MARIA_DB: String = "maria-db"
54 const val PRIMARY_DB: String = "processor-db"
55 const val MYSQL_DB: String = "mysql-db"
56 const val ORACLE_DB: String = "oracle-db"
57 const val POSTGRES_DB: String = "postgres-db"
59 //List of database drivers
60 const val DRIVER_MARIA_DB = "org.mariadb.jdbc.Driver"
61 const val DRIVER_MYSQL_DB = "com.mysql.jdbc.Driver"
62 const val DRIVER_ORACLE_DB = "oracle.jdbc.driver.OracleDriver"
63 const val DRIVER_POSTGRES_DB = "org.postgresql.Driver"