2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.so.bpmn.infrastructure.workflow.tasks;
23 import java.util.List;
24 import java.util.Optional;
25 import org.onap.aai.domain.yang.VpnBinding;
26 import org.onap.aaiclient.client.aai.entities.AAIResultWrapper;
27 import org.onap.aaiclient.client.aai.entities.Relationships;
28 import org.onap.aaiclient.client.aai.entities.uri.AAIResourceUri;
29 import org.onap.aaiclient.client.generated.fluentbuilders.AAIFluentTypeBuilder.Types;
30 import org.onap.so.bpmn.servicedecomposition.bbobjects.Configuration;
31 import org.onap.so.bpmn.servicedecomposition.tasks.BBInputSetupUtils;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
34 import org.springframework.beans.factory.annotation.Autowired;
35 import org.springframework.stereotype.Component;
38 public class WorkflowActionExtractResourcesAAI {
39 private static final Logger logger = LoggerFactory.getLogger(WorkflowActionExtractResourcesAAI.class);
42 protected BBInputSetupUtils bbInputSetupUtils;
44 public Optional<Configuration> extractRelationshipsConfiguration(Relationships relationships) {
45 List<AAIResultWrapper> configurations = relationships.getByType(Types.CONFIGURATION);
46 for (AAIResultWrapper configWrapper : configurations) {
47 Optional<Configuration> config = configWrapper.asBean(Configuration.class);
48 if (config.isPresent()) {
52 return Optional.empty();
55 public Optional<VpnBinding> extractRelationshipsVpnBinding(Relationships relationships) {
56 List<AAIResourceUri> configurations = relationships.getRelatedUris(Types.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()) {
64 return Optional.empty();
67 public Optional<Relationships> extractRelationshipsVnfc(Relationships relationships) {
68 List<AAIResultWrapper> vnfcs = relationships.getByType(Types.VNFC);
69 for (AAIResultWrapper vnfcWrapper : vnfcs) {
70 if (vnfcWrapper.getRelationships().isPresent()) {
71 return vnfcWrapper.getRelationships();
74 return Optional.empty();