c3106d6e4940f2258d7dcea548e8f73a057ad01b
[so.git] / bpmn / so-bpmn-tasks / src / main / java / org / onap / so / bpmn / infrastructure / flowspecific / tasks / AssignNetwork.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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 package org.onap.so.bpmn.infrastructure.flowspecific.tasks;
23
24 import org.onap.so.bpmn.common.BuildingBlockExecution;
25 import org.onap.so.bpmn.servicedecomposition.bbobjects.L3Network;
26 import org.onap.so.bpmn.servicedecomposition.entities.ResourceKey;
27 import org.onap.so.bpmn.servicedecomposition.tasks.ExtractPojosForBB;
28 import org.onap.so.db.catalog.beans.OrchestrationStatus;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31 import org.springframework.beans.factory.annotation.Autowired;
32 import org.springframework.stereotype.Component;
33
34 @Component
35 public class AssignNetwork {
36
37         private static final Logger logger = LoggerFactory.getLogger(AssignNetwork.class);
38
39         @Autowired
40         private ExtractPojosForBB extractPojosForBB;
41         
42         /**
43          * Check if network was found by name
44          * @param execution
45          * @return
46          */
47         public boolean networkFoundByName(BuildingBlockExecution execution) {
48                 boolean networkFound = false;
49                 try {
50                         L3Network l3network = extractPojosForBB.extractByKey(execution, ResourceKey.NETWORK_ID);
51
52                         if (!OrchestrationStatus.PRECREATED.equals(l3network.getOrchestrationStatus())){
53                                 networkFound = true;
54                                 logger.debug("network found in NOT PRECREATED status");
55                         }
56                 } catch (Exception ex) {
57                         // return false if no network present
58                 }
59                 return networkFound;
60         }
61 }