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=========================================================
21 package org.openecomp.sdc.heat.datatypes.manifest;
23 import org.apache.commons.collections4.CollectionUtils;
26 import java.util.function.Predicate;
28 public class FileData {
30 protected static final Set<Type> heatFileTypes =
31 new HashSet<>(Arrays.asList(Type.HEAT, Type.HEAT_NET, Type.HEAT_VOL));
32 private Boolean isBase;
33 private String parentFile;
36 private List<FileData> data;
38 public static Predicate<FileData> buildFileDataPredicateByType(Type... types) {
39 return fileData -> Arrays.asList(types).contains(fileData.getType());
42 public static boolean isHeatFile(Type type) {
43 return heatFileTypes.contains(type);
46 public Boolean getBase() {
50 public void setBase(Boolean base) {
54 public String getFile() {
58 public void setFile(String file) {
62 public String getParentFile() {
66 public void setParentFile(String parentFile) {
67 this.parentFile = parentFile;
70 public Type getType() {
74 public void setType(Type type) {
78 public List<FileData> getData() {
82 public void setData(List<FileData> data) {
89 * @param data the data
91 public void addFileData(FileData data) {
92 if (CollectionUtils.isEmpty(this.data)) {
93 this.data = new ArrayList<>();
101 HEAT_ENV("HEAT_ENV"),
102 HEAT_NET("HEAT_NET"),
103 HEAT_VOL("HEAT_VOL"),
108 YANG_XML("YANG_XML"),
111 MURANO_PKG("MURANO_PKG"),
112 VENDOR_LICENSE("VENDOR_LICENSE"),
113 VF_LICENSE("VF_LICENSE"),
116 private String displayName;
118 Type(String displayName) {
119 this.displayName = displayName;
122 public String getDisplayName() {
126 public static boolean isArtifact(Type fileType) {
127 return !Arrays.asList(HEAT,HEAT_ENV, HEAT_VOL).contains(fileType);
130 public static boolean canBeAssociated(Type fileType)
132 return HEAT_VOL == fileType;