ef99546214cdd5d84202d768af9d889cc035680a
[so.git] /
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 import org.onap.so.logger.MsoLogger
29
30 /**
31  * This groovy class supports the <class>ActivateSDNCCNetworkResource.bpmn</class> process.
32  * flow for SDNC Network Resource Activate
33  */
34 public class ActivateSDNCNetworkResource extends AbstractServiceTaskProcessor {
35     private static final MsoLogger msoLogger = MsoLogger.getMsoLogger(MsoLogger.Catalog.BPEL, CreateSDNCNetworkResource.class);
36     
37     String Prefix = "ACTSDNCRES_"
38
39     ExceptionUtil exceptionUtil = new ExceptionUtil()
40
41     JsonUtils jsonUtil = new JsonUtils()
42
43     SDNCAdapterUtils sdncAdapterUtils = new SDNCAdapterUtils()
44
45     public void preProcessRequest(DelegateExecution execution) {
46         msoLogger.trace("Started preProcessRequest ")
47     }
48
49     public void prepareUpdateAfterActivateSDNCResource(DelegateExecution execution) {
50         msoLogger.trace("started prepareUpdateAfterActivateSDNCResource ")
51     }
52
53     public void postCreateSDNCCall(DelegateExecution execution) {
54         msoLogger.trace("started postCreateSDNCCall ")
55     }
56
57     public void sendSyncResponse(DelegateExecution execution) {
58         msoLogger.trace("started sendSyncResponse ")
59     }
60 }