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 / 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 import org.onap.so.bpmn.common.BuildingBlockExecution;
26 import org.onap.so.bpmn.servicedecomposition.bbobjects.CloudRegion;
27 import org.onap.so.bpmn.servicedecomposition.entities.GeneralBuildingBlock;
28 import org.springframework.stereotype.Component;
29
30 @Component
31 public class NetworkBBUtils {
32
33     private static final String CLOUD_REGION_VER25 = "2.5";
34     private static final String CLOUD_REGION_AAIAIC25 = "AAIAIC25";
35
36     /**
37      * BPMN access method to check if Relationship's Related-To value exists.
38      * 
39      * @param l3Network - L3Network object
40      * @param relatedToValue - String, ex: 'vf-module'
41      * @return boolean
42      */
43     public boolean isRelationshipRelatedToExists(Optional<org.onap.aai.domain.yang.L3Network> l3network,
44             String relatedToValue) {
45         boolean isRelatedToExists = false;
46         if (l3network.isPresent()) {
47             List<org.onap.aai.domain.yang.Relationship> relationshipList =
48                     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      * 
62      * @param execution
63      * @param motsValue (ex: SourceSystem.SDNC or SourceSystem.PO)
64      */
65     public String getCloudRegion(BuildingBlockExecution execution, SourceSystem sourceValue) {
66         GeneralBuildingBlock gBBInput = execution.getGeneralBuildingBlock();
67         CloudRegion cloudRegion = gBBInput.getCloudRegion();
68         String cloudRegionId = cloudRegion.getLcpCloudRegionId();
69         if (sourceValue.equals(SourceSystem.SDNC)
70                 && CLOUD_REGION_VER25.equalsIgnoreCase(cloudRegion.getCloudRegionVersion())) {
71             cloudRegionId = CLOUD_REGION_AAIAIC25;
72         }
73         return cloudRegionId;
74     }
75
76
77 }