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.vendorsoftwareproduct.types.candidateheat;
23 import org.apache.commons.collections4.CollectionUtils;
25 import java.util.Collection;
26 import java.util.HashSet;
31 * @since December 25, 2016
33 public class AnalyzedZipHeatFiles {
34 private Set<String> nestedFiles = new HashSet<>();
35 private Set<String> otherNonModuleFiles = new HashSet<>();
36 private Set<String> moduleFiles = new HashSet<>();
38 public void addNestedFile(String fileName)
40 nestedFiles.add(fileName);
41 moduleFiles.remove(fileName);
44 public void addNestedFiles(Collection<String> fileNames)
46 nestedFiles.addAll(fileNames);
47 moduleFiles.removeAll(fileNames);
50 public void addOtherNonModuleFile(String fileName)
52 otherNonModuleFiles.add(fileName);
53 moduleFiles.remove(fileName);
56 public void addOtherNonModuleFiles(Collection<String> fileNames)
58 otherNonModuleFiles.addAll(fileNames);
59 moduleFiles.removeAll(fileNames);
62 public void addModuleFile(String fileName)
64 moduleFiles.add(fileName);
67 public Collection<String> getFilesNotEligbleForModules()
69 return CollectionUtils.union(this.getNestedFiles(), this.getOtherNonModuleFiles());
72 public Set<String> getNestedFiles() {
76 public Set<String> getOtherNonModuleFiles() {
77 return otherNonModuleFiles;
80 public Set<String> getModuleFiles() {