de674daca38feb544ef720469f1be6cdf8050bd8
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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.workflow.tasks;
22
23 import java.util.List;
24 import java.util.Optional;
25 import org.onap.aai.domain.yang.VpnBinding;
26 import org.onap.so.bpmn.servicedecomposition.bbobjects.Configuration;
27 import org.onap.so.bpmn.servicedecomposition.tasks.BBInputSetupUtils;
28 import org.onap.aaiclient.client.aai.AAIObjectType;
29 import org.onap.aaiclient.client.aai.entities.AAIResultWrapper;
30 import org.onap.aaiclient.client.aai.entities.Relationships;
31 import org.onap.aaiclient.client.aai.entities.uri.AAIResourceUri;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
34 import org.springframework.beans.factory.annotation.Autowired;
35 import org.springframework.stereotype.Component;
36
37 @Component
38 public class WorkflowActionExtractResourcesAAI {
39     private static final Logger logger = LoggerFactory.getLogger(WorkflowActionExtractResourcesAAI.class);
40
41     @Autowired
42     protected BBInputSetupUtils bbInputSetupUtils;
43
44     public Optional<Configuration> extractRelationshipsConfiguration(Relationships relationships) {
45         List<AAIResultWrapper> configurations = relationships.getByType(AAIObjectType.CONFIGURATION);
46         for (AAIResultWrapper configWrapper : configurations) {
47             Optional<Configuration> config = configWrapper.asBean(Configuration.class);
48             if (config.isPresent()) {
49                 return config;
50             }
51         }
52         return Optional.empty();
53     }
54
55     public Optional<VpnBinding> extractRelationshipsVpnBinding(Relationships relationships) {
56         List<AAIResourceUri> configurations = relationships.getRelatedUris(AAIObjectType.VPN_BINDING);
57         for (AAIResourceUri vpnBindingUri : configurations) {
58             AAIResultWrapper vpnBindingWrapper = bbInputSetupUtils.getAAIResourceDepthOne(vpnBindingUri);
59             Optional<VpnBinding> vpnBinding = vpnBindingWrapper.asBean(VpnBinding.class);
60             if (vpnBinding.isPresent()) {
61                 return vpnBinding;
62             }
63         }
64         return Optional.empty();
65     }
66
67     public Optional<Relationships> extractRelationshipsVnfc(Relationships relationships) {
68         List<AAIResultWrapper> vnfcs = relationships.getByType(AAIObjectType.VNFC);
69         for (AAIResultWrapper vnfcWrapper : vnfcs) {
70             if (vnfcWrapper.getRelationships().isPresent()) {
71                 return vnfcWrapper.getRelationships();
72             }
73         }
74         return Optional.empty();
75     }
76 }