Improve service template access through cache.
[ccsdk/cds.git] / ms / controllerblueprints / modules / blueprint-core / src / main / kotlin / org / onap / ccsdk / cds / controllerblueprints / core / interfaces / BluePrintDefinitions.kt
1 /*
2  *  Copyright © 2019 IBM.
3  *
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
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16
17 package org.onap.ccsdk.cds.controllerblueprints.core.interfaces
18
19 import org.onap.ccsdk.cds.controllerblueprints.core.data.ServiceTemplate
20
21 interface BluePrintDefinitions {
22
23     /** Define the service Template Model */
24     fun serviceTemplate(): ServiceTemplate
25
26     /** Load Custom Definitions that may used during runtime **/
27     fun loadOtherDefinitions()
28
29     /** Utility Method to add the definition */
30     fun addOtherDefinition(key: String, definition: Any)
31
32     /** Utility method to get the definition */
33     fun <T : Any> otherDefinition(key: String): T
34
35     fun otherDefinitions(): MutableMap<String, Any>
36 }
37
38 abstract class AbstractBluePrintDefinitions : BluePrintDefinitions {
39
40     private val otherDefinitionMap: MutableMap<String, Any> = hashMapOf()
41
42     constructor() {
43         loadOtherDefinitions()
44     }
45
46     override fun loadOtherDefinitions() {
47     }
48
49     override fun <T : Any> otherDefinition(key: String): T {
50         return otherDefinitionMap[key] as T
51     }
52
53     override fun addOtherDefinition(key: String, definition: Any) {
54         otherDefinitionMap[key] = definition
55     }
56
57     override fun otherDefinitions(): MutableMap<String, Any> {
58         return otherDefinitionMap
59     }
60
61 }