Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / so-bpmn-tasks / src / main / java / org / onap / so / bpmn / infrastructure / flowspecific / tasks / UnassignNetworkBB.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.so.bpmn.infrastructure.flowspecific.tasks;
24
25 import java.util.Optional;
26 import org.onap.so.bpmn.common.BuildingBlockExecution;
27 import org.onap.so.bpmn.servicedecomposition.bbobjects.L3Network;
28 import org.onap.so.bpmn.servicedecomposition.entities.ResourceKey;
29 import org.onap.so.bpmn.servicedecomposition.tasks.ExtractPojosForBB;
30 import org.onap.so.client.aai.entities.AAIResultWrapper;
31 import org.onap.so.client.exception.ExceptionBuilder;
32 import org.onap.so.client.orchestration.AAINetworkResources;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
35 import org.springframework.beans.factory.annotation.Autowired;
36 import org.springframework.stereotype.Component;
37
38 @Component
39 public class UnassignNetworkBB {
40
41     private static final Logger logger = LoggerFactory.getLogger(UnassignNetworkBB.class);
42
43     private static String MESSAGE_CANNOT_PERFORM_UNASSIGN =
44             "Cannot perform Unassign Network. Network is still related to ";
45     private static String MESSAGE_ERROR_ROLLBACK = " Rollback is not possible. Please restore data manually.";
46
47     @Autowired
48     private ExceptionBuilder exceptionUtil;
49
50     @Autowired
51     private NetworkBBUtils networkBBUtils;
52
53     @Autowired
54     private ExtractPojosForBB extractPojosForBB;
55
56     @Autowired
57     private AAINetworkResources aaiNetworkResources;
58
59     /**
60      * BPMN access method to prepare overall error messages.
61      * 
62      * @param execution - BuildingBlockExecution
63      * @param relatedToValue - String, ex: vf-module
64      * @return void - nothing
65      * @throws Exception
66      */
67
68     public void checkRelationshipRelatedTo(BuildingBlockExecution execution, String relatedToValue) throws Exception {
69         try {
70             L3Network l3network = extractPojosForBB.extractByKey(execution, ResourceKey.NETWORK_ID);
71             AAIResultWrapper aaiResultWrapper = aaiNetworkResources.queryNetworkWrapperById(l3network);
72             Optional<org.onap.aai.domain.yang.L3Network> network =
73                     aaiResultWrapper.asBean(org.onap.aai.domain.yang.L3Network.class);
74             if (networkBBUtils.isRelationshipRelatedToExists(network, relatedToValue)) {
75                 String msg = MESSAGE_CANNOT_PERFORM_UNASSIGN + relatedToValue;
76                 execution.setVariable("ErrorUnassignNetworkBB", msg);
77                 exceptionUtil.buildAndThrowWorkflowException(execution, 7000, msg);
78             }
79         } catch (Exception ex) {
80             exceptionUtil.buildAndThrowWorkflowException(execution, 7000, ex);
81         }
82     }
83
84     /**
85      * BPMN access method to getCloudRegionId
86      * 
87      * @param execution - BuildingBlockExecution
88      * @return void - nothing
89      * @throws Exception
90      */
91
92     public void getCloudSdncRegion(BuildingBlockExecution execution) throws Exception {
93         try {
94             String cloudRegionSdnc = networkBBUtils.getCloudRegion(execution, SourceSystem.SDNC);
95             execution.setVariable("cloudRegionSdnc", cloudRegionSdnc);
96         } catch (Exception ex) {
97             exceptionUtil.buildAndThrowWorkflowException(execution, 7000, ex);
98         }
99     }
100
101     /**
102      * BPMN access method to prepare overall error messages.
103      * 
104      * @param execution - BuildingBlockExecution
105      * @return void - nothing
106      */
107     public void errorEncountered(BuildingBlockExecution execution) {
108         String msg;
109         boolean isRollbackNeeded =
110                 execution.getVariable("isRollbackNeeded") != null ? execution.getVariable("isRollbackNeeded") : false;
111         if (isRollbackNeeded == true) {
112             msg = execution.getVariable("ErrorUnassignNetworkBB") + MESSAGE_ERROR_ROLLBACK;
113         } else {
114             msg = execution.getVariable("ErrorUnassignNetworkBB");
115         }
116         exceptionUtil.buildAndThrowWorkflowException(execution, 7000, msg);
117     }
118
119
120 }