7b6706f8201c11cd08cce3d51271c3f5b6e7f2ab
[so.git] / bpmn / so-bpmn-infrastructure-common / src / main / java / org / onap / so / bpmn / infrastructure / pnf / delegate / CreateRelation.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2019 Nokia.
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.onap.so.bpmn.infrastructure.pnf.delegate;
22
23 import org.camunda.bpm.engine.delegate.DelegateExecution;
24 import org.camunda.bpm.engine.delegate.JavaDelegate;
25 import org.onap.so.bpmn.common.scripts.ExceptionUtil;
26 import org.onap.so.bpmn.infrastructure.pnf.management.PnfManagement;
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.stereotype.Component;
31
32 @Component
33 public class CreateRelation implements JavaDelegate {
34
35     private static final Logger logger = LoggerFactory.getLogger(CreateRelation.class);
36
37     private PnfManagement pnfManagementImpl;
38
39     @Autowired
40     public CreateRelation(PnfManagement pnfManagementImpl) {
41         this.pnfManagementImpl = pnfManagementImpl;
42     }
43
44     @Override
45     public void execute(DelegateExecution delegateExecution) {
46         String serviceInstanceId = (String) delegateExecution.getVariable("serviceInstanceId");
47         String pnfName = (String) delegateExecution.getVariable("correlationId");
48         try {
49             pnfManagementImpl.createRelation(serviceInstanceId, pnfName);
50         } catch (Exception e) {
51             new ExceptionUtil().buildAndThrowWorkflowException(delegateExecution, 9999,
52                     "An exception occurred when making service and pnf relation. Exception: " + e.getMessage());
53         }
54         logger.debug("The relation has been made between service with id: {} and pnf with name: {}",
55                 serviceInstanceId, pnfName);
56     }
57
58 }