2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.openecomp.mso.bpmn.infrastructure.scripts
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
31 * This groovy class supports the <class>ActivateSDNCCNetworkResource.bpmn</class> process.
32 * flow for SDNC Network Resource Activate
34 public class ActivateSDNCNetworkResource extends AbstractServiceTaskProcessor {
35 private static final MsoLogger msoLogger = MsoLogger.getMsoLogger(MsoLogger.Catalog.BPEL, CreateSDNCNetworkResource.class);
37 String Prefix = "ACTSDNCRES_"
39 ExceptionUtil exceptionUtil = new ExceptionUtil()
41 JsonUtils jsonUtil = new JsonUtils()
43 SDNCAdapterUtils sdncAdapterUtils = new SDNCAdapterUtils()
45 public void preProcessRequest(DelegateExecution execution) {
46 msoLogger.trace("Started preProcessRequest ")
49 public void prepareUpdateAfterActivateSDNCResource(DelegateExecution execution) {
50 msoLogger.trace("started prepareUpdateAfterActivateSDNCResource ")
53 public void postCreateSDNCCall(DelegateExecution execution) {
54 msoLogger.trace("started postCreateSDNCCall ")
57 public void sendSyncResponse(DelegateExecution execution) {
58 msoLogger.trace("started sendSyncResponse ")