Springboot 2.0 upgrade
[so.git] / bpmn / so-bpmn-tasks / src / main / java / org / onap / so / bpmn / infrastructure / flowspecific / tasks / NetworkBBUtils.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 AT&T Intellectual Property. 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.onap.so.bpmn.infrastructure.flowspecific.tasks;
22
23 import java.util.List;
24 import java.util.Optional;
25
26 import org.onap.so.bpmn.common.BuildingBlockExecution;
27 import org.onap.so.bpmn.servicedecomposition.bbobjects.CloudRegion;
28 import org.onap.so.bpmn.servicedecomposition.entities.GeneralBuildingBlock;
29 import org.onap.so.logger.MsoLogger;
30 import org.springframework.stereotype.Component;
31
32 @Component
33 public class NetworkBBUtils {   
34         
35         private static final String CLOUD_REGION_VER25 = "2.5"; 
36         private static final String CLOUD_REGION_AAIAIC25 = "AAIAIC25";
37         
38         /**
39          * BPMN access method to check if Relationship's Related-To value exists.
40          * 
41          * @param l3Network - L3Network object
42          * @param relatedToValue - String, ex: 'vf-module'
43          * @return boolean
44          */
45         public boolean isRelationshipRelatedToExists(Optional<org.onap.aai.domain.yang.L3Network> l3network, String relatedToValue) {
46                 boolean isRelatedToExists = false;
47                 if (l3network.isPresent()) {
48                         List<org.onap.aai.domain.yang.Relationship> relationshipList = l3network.get().getRelationshipList().getRelationship();
49                         for (org.onap.aai.domain.yang.Relationship relationship : relationshipList) {
50                             if (relationship.getRelatedTo().equals(relatedToValue)) { 
51                                 isRelatedToExists = true; 
52                                 break; 
53                             }
54                         }
55                 }
56                 return isRelatedToExists;
57         }
58         
59         /**
60          * BPMN access method to extract Cloud Region data
61          * @param execution
62          * @param motsValue (ex: SourceSystem.SDNC or SourceSystem.PO)
63          */
64         public String getCloudRegion(BuildingBlockExecution execution, SourceSystem sourceValue) {
65                 GeneralBuildingBlock gBBInput = execution.getGeneralBuildingBlock();
66                 CloudRegion cloudRegion = gBBInput.getCloudRegion();
67                 String cloudRegionId = cloudRegion.getLcpCloudRegionId();
68                 if (sourceValue.equals(SourceSystem.SDNC) && CLOUD_REGION_VER25.equalsIgnoreCase(cloudRegion.getCloudRegionVersion())) { 
69                         cloudRegionId = CLOUD_REGION_AAIAIC25;
70                 }
71                 return cloudRegionId;
72         }
73                 
74         
75 }