2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 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=========================================================
20 package org.openecomp.sdc.heat.datatypes.manifest;
22 import java.util.ArrayList;
23 import java.util.Arrays;
24 import java.util.HashSet;
25 import java.util.List;
27 import java.util.function.Predicate;
28 import lombok.AccessLevel;
29 import lombok.AllArgsConstructor;
33 import org.apache.commons.collections4.CollectionUtils;
36 public class FileData {
38 protected static final Set<Type> heatFileTypes = new HashSet<>(Arrays.asList(Type.HEAT, Type.HEAT_NET, Type.HEAT_VOL));
39 @Getter(AccessLevel.NONE)
40 @Setter(AccessLevel.NONE)
41 private Boolean isBase;
42 private String parentFile;
45 private List<FileData> data;
47 public static Predicate<FileData> buildFileDataPredicateByType(Type... types) {
48 return fileData -> Arrays.asList(types).contains(fileData.getType());
51 public static boolean isHeatFile(Type type) {
52 return heatFileTypes.contains(type);
55 public Boolean getBase() {
59 public void setBase(Boolean base) {
66 * @param data the data
68 public void addFileData(FileData data) {
69 if (CollectionUtils.isEmpty(this.data)) {
70 this.data = new ArrayList<>();
90 MURANO_PKG("MURANO_PKG"),
91 VENDOR_LICENSE("VENDOR_LICENSE"),
92 VF_LICENSE("VF_LICENSE"),
93 CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT("CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT"),
94 CONTROLLER_BLUEPRINT_ARCHIVE("CONTROLLER_BLUEPRINT_ARCHIVE"),
97 PNF_SW_INFORMATION("PNF_SW_INFORMATION"),
98 PM_DICTIONARY("PM_DICTIONARY");
101 private String displayName;
103 public static boolean isArtifact(Type fileType) {
104 return !Arrays.asList(HEAT, HEAT_ENV, HEAT_VOL).contains(fileType);
107 public static boolean canBeAssociated(Type fileType) {
108 return HEAT_VOL == fileType;