Containerization feature of SO
[so.git] / bpmn / mso-infrastructure-bpmn / src / main / groovy / org / onap / so / bpmn / infrastructure / scripts / ActivateSDNCNetworkResource.groovy
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - SO
4  * ================================================================================
5  * Copyright (C) 2018 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 package org.openecomp.mso.bpmn.infrastructure.scripts
22
23 import org.onap.so.bpmn.common.scripts.AbstractServiceTaskProcessor
24 import org.camunda.bpm.engine.delegate.DelegateExecution
25 import org.onap.so.bpmn.core.json.JsonUtils
26 import org.onap.so.bpmn.common.scripts.ExceptionUtil
27 import org.onap.so.bpmn.common.scripts.SDNCAdapterUtils
28
29 /**
30  * This groovy class supports the <class>ActivateSDNCCNetworkResource.bpmn</class> process.
31  * flow for SDNC Network Resource Activate
32  */
33 public class ActivateSDNCNetworkResource extends AbstractServiceTaskProcessor {
34
35     String Prefix = "ACTSDNCRES_"
36
37     ExceptionUtil exceptionUtil = new ExceptionUtil()
38
39     JsonUtils jsonUtil = new JsonUtils()
40
41     SDNCAdapterUtils sdncAdapterUtils = new SDNCAdapterUtils()
42
43     public void preProcessRequest(DelegateExecution execution) {
44         def isDebugEnabled = execution.getVariable("isDebugLogEnabled")
45         utils.log("INFO"," ***** Started preProcessRequest *****",  isDebugEnabled)
46     }
47
48     public void prepareUpdateAfterActivateSDNCResource(DelegateExecution execution) {
49         def isDebugEnabled = execution.getVariable("isDebugLogEnabled")
50         utils.log("INFO"," ***** started prepareUpdateAfterActivateSDNCResource *****",  isDebugEnabled)
51     }
52
53     public void postCreateSDNCCall(DelegateExecution execution) {
54         def isDebugEnabled = execution.getVariable("isDebugLogEnabled")
55         utils.log("INFO"," ***** started postCreateSDNCCall *****",  isDebugEnabled)
56     }
57
58     public void sendSyncResponse(DelegateExecution execution) {
59         def isDebugEnabled = execution.getVariable("isDebugLogEnabled")
60         utils.log("INFO"," ***** started sendSyncResponse *****",  isDebugEnabled)
61     }
62 }