Merge "Resource dictionary- updated license text"
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / services / execution-service / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / services / execution / scripts / SampleComponent.kt
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - CDS
4  * ================================================================================
5  * Copyright (C) 2019 Huawei Technologies Co., Ltd. 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
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
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.
18  * ============LICENSE_END=========================================================
19  */
20
21
22 package org.onap.ccsdk.cds.blueprintsprocessor.services.execution.scripts
23
24 import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceInput
25 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractComponentFunction
26 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.AbstractScriptComponentFunction
27 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.ComponentFunctionScriptingService
28
29 import org.slf4j.LoggerFactory
30
31 open class SampleComponent : AbstractComponentFunction() {
32
33     val log = LoggerFactory.getLogger(SampleComponent::class.java)!!
34
35
36     override suspend fun processNB(executionRequest: ExecutionServiceInput) {
37     }
38
39     override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {
40     }
41 }
42
43 open class SampleRestconfComponent (private var componentFunctionScriptingService: ComponentFunctionScriptingService)
44     : AbstractComponentFunction() {
45
46     val log = LoggerFactory.getLogger(SampleScriptComponent::class.java)!!
47
48
49     override suspend fun processNB(executionRequest: ExecutionServiceInput) {
50         var scriptComponent: AbstractScriptComponentFunction
51         scriptComponent = componentFunctionScriptingService
52                 .scriptInstance<AbstractScriptComponentFunction>(this,
53                         "internal",
54                         "org.onap.ccsdk.cds.blueprintsprocessor.services" +
55                                 ".execution.scripts.SampleTest",
56                         mutableListOf())
57         scriptComponent.executeScript(executionServiceInput)
58     }
59
60     override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {
61     }
62 }
63
64 open class SampleScriptComponent : AbstractScriptComponentFunction() {
65
66     val log = LoggerFactory.getLogger(SampleScriptComponent::class.java)!!
67
68
69     override suspend fun processNB(executionRequest: ExecutionServiceInput) {
70
71     }
72
73     override suspend fun recoverNB(runtimeException: RuntimeException, executionRequest: ExecutionServiceInput) {
74     }
75 }