2b0f8bf946ecbde5f372af66e8d358f00cb3b279
[so.git] / bpmn / so-bpmn-tasks / src / main / java / org / onap / so / bpmn / infrastructure / workflow / tasks / WorkflowActionExtractResourcesAAI.java
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
26 import org.onap.so.bpmn.servicedecomposition.bbobjects.Configuration;
27 import org.onap.so.client.aai.AAIObjectType;
28 import org.onap.so.client.aai.entities.AAIResultWrapper;
29 import org.onap.so.client.aai.entities.Relationships;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32 import org.springframework.stereotype.Component;
33
34 @Component
35 public class WorkflowActionExtractResourcesAAI {
36         private static final Logger logger = LoggerFactory.getLogger(WorkflowActionExtractResourcesAAI.class);
37
38         public Optional<Configuration> extractRelationshipsConfiguration(Relationships relationships) {
39                 List<AAIResultWrapper> configurations = relationships.getByType(AAIObjectType.CONFIGURATION);
40                 for(AAIResultWrapper configWrapper : configurations) {
41                         Optional<Configuration> config = configWrapper.asBean(Configuration.class);
42                         if(config.isPresent()){
43                                 return config;
44                         }
45                 }
46                 return Optional.empty();
47         }
48
49         public Optional<Relationships> extractRelationshipsVnfc(Relationships relationships) {
50                 List<AAIResultWrapper> vnfcs = relationships.getByType(AAIObjectType.VNFC);
51                 for(AAIResultWrapper vnfcWrapper : vnfcs){
52                         if(vnfcWrapper.getRelationships().isPresent()){
53                                 return vnfcWrapper.getRelationships();
54                         }
55                 }
56                 return Optional.empty();
57         }
58 }