[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-sdc-vendor-software-product-lib / openecomp-sdc-vendor-software-product-api / src / main / java / org / openecomp / sdc / vendorsoftwareproduct / types / candidateheat / AnalyzedZipHeatFiles.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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
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.openecomp.sdc.vendorsoftwareproduct.types.candidateheat;
22
23 import org.apache.commons.collections4.CollectionUtils;
24
25 import java.util.Collection;
26 import java.util.HashSet;
27 import java.util.Objects;
28 import java.util.Set;
29
30 /**
31  * @author Avrahamg
32  * @since December 25, 2016
33  */
34 public class AnalyzedZipHeatFiles {
35   private Set<String> nestedFiles = new HashSet<>();
36   private Set<String> otherNonModuleFiles = new HashSet<>();
37   private Set<String> moduleFiles = new HashSet<>();
38
39   public void addNestedFile(String fileName)
40   {
41     nestedFiles.add(fileName);
42     moduleFiles.remove(fileName);
43   }
44
45   public void addNestedFiles(Collection<String> fileNames)
46   {
47     nestedFiles.addAll(fileNames);
48     moduleFiles.removeAll(fileNames);
49   }
50
51   public void addOtherNonModuleFile(String fileName)
52   {
53     otherNonModuleFiles.add(fileName);
54     moduleFiles.remove(fileName);
55   }
56
57   public void addOtherNonModuleFiles(Collection<String> fileNames)
58   {
59     otherNonModuleFiles.addAll(fileNames);
60     moduleFiles.removeAll(fileNames);
61   }
62
63   public void addModuleFile(String fileName)
64   {
65     moduleFiles.add(fileName);
66   }
67
68   public Collection<String> getFilesNotEligbleForModules()
69   {
70     return CollectionUtils.union(this.getNestedFiles(), this.getOtherNonModuleFiles());
71   }
72
73   public Set<String> getNestedFiles() {
74     return nestedFiles;
75   }
76
77   public Set<String> getOtherNonModuleFiles() {
78     return otherNonModuleFiles;
79   }
80
81   public Set<String> getModuleFiles() {
82     return moduleFiles;
83   }
84 }