c007914a54221cd25552ddcf7d55d7dac7abb744
[ccsdk/cds.git] /
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
3  *
4  * Modifications Copyright © 2019 IBM, Bell Canada.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 package org.onap.ccsdk.apps.blueprintsprocessor.functions.netconf.executor
20
21 import org.onap.ccsdk.apps.blueprintsprocessor.core.api.data.ExecutionServiceInput
22 import org.onap.ccsdk.apps.blueprintsprocessor.functions.python.executor.BlueprintPythonService
23 import org.onap.ccsdk.apps.blueprintsprocessor.functions.netconf.executor.interfaces.DeviceInfo
24 import org.onap.ccsdk.apps.blueprintsprocessor.functions.python.executor.ComponentJythonExecutor
25 import org.slf4j.LoggerFactory
26 import org.springframework.beans.factory.config.ConfigurableBeanFactory
27 import org.springframework.context.ApplicationContext
28 import org.springframework.context.annotation.Scope
29 import org.springframework.stereotype.Component
30
31 @Component("component-netconf-executor")
32 @Scope(value = ConfigurableBeanFactory.SCOPE_PROTOTYPE)
33 open class ComponentNetconfExecutor(private var applicationContext: ApplicationContext, private val netconfExecutorConfiguration: NetconfExecutorConfiguration,
34                                     private val blueprintPythonService: BlueprintPythonService)
35     : ComponentJythonExecutor(applicationContext, blueprintPythonService) {
36
37     private val log = LoggerFactory.getLogger(ComponentNetconfExecutor::class.java)
38     lateinit var deviceInfo: DeviceInfo
39
40
41     override fun process(executionServiceInput: ExecutionServiceInput) {
42
43          super.process(executionServiceInput)
44
45
46     }
47
48     fun setdeviceInfo(deviceInfo: DeviceInfo) {
49         this.deviceInfo = deviceInfo
50     }
51 }