Convert project from AJSC to Spring Boot
[aai/model-loader.git] / src / main / java / org / onap / aai / modelloader / extraction / ArtifactInfoExtractor.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 European Software Marketing Ltd.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.modelloader.extraction;
22
23 import java.util.ArrayList;
24 import java.util.List;
25 import org.onap.sdc.api.notification.IArtifactInfo;
26 import org.onap.sdc.api.notification.INotificationData;
27 import org.onap.sdc.api.notification.IResourceInstance;
28
29 /**
30  * This class is responsible for extracting implementations of IArtifactInto from an implementation of
31  * INotificationData.
32  */
33 public class ArtifactInfoExtractor {
34
35     /**
36      * This method is responsible for extracting a collection of IArtifactInfo objects from a given instance of
37      * INotificationData.
38      * <p/>
39      *
40      * @param data an object that may contain instances of IArtifactInfo
41      * @return List<IArtifactInfo> instances of IArtifactInfo extracted from the given data
42      */
43     public List<IArtifactInfo> extract(INotificationData data) {
44         List<IArtifactInfo> artifacts = new ArrayList<>();
45
46         if (data != null) {
47             if (data.getServiceArtifacts() != null) {
48                 artifacts.addAll(data.getServiceArtifacts());
49             }
50
51             if (data.getResources() != null) {
52                 for (IResourceInstance resource : data.getResources()) {
53                     if (resource.getArtifacts() != null) {
54                         artifacts.addAll(resource.getArtifacts());
55                     }
56                 }
57             }
58         }
59
60         return artifacts;
61     }
62 }