[SDC-29] rebase continue work to align source
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / GroupHeatMetaDefinition.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.ci.tests.datatypes;
22
23 import java.util.ArrayList;
24 import java.util.HashMap;
25 import java.util.List;
26 import java.util.Map;
27
28 public class GroupHeatMetaDefinition {
29
30         private int group = 0;
31 //      private List<String> artifactList = new ArrayList<String>();
32         private List<HeatMetaFirstLevelDefinition> artifactList = new ArrayList<HeatMetaFirstLevelDefinition>();
33         @Override
34         public String toString() {
35                 return "GroupHeatMetaDefinition [group=" + group + ", artifactList=" + artifactList + ", artifactMap=" + artifactMap + ", propertyHeatMetaDefinition=" + propertyHeatMetaDefinition + "]";
36         }
37
38         public List<HeatMetaFirstLevelDefinition> getArtifactList() {
39                 return artifactList;
40         }
41
42         public void setArtifactList(List<HeatMetaFirstLevelDefinition> artifactList) {
43                 this.artifactList = artifactList;
44         }
45
46         private Map<String, String> artifactMap = new HashMap<>();
47         PropertyHeatMetaDefinition propertyHeatMetaDefinition;
48         
49         public Map<String, String> getArtifactMap() {
50                 return artifactMap;
51         }
52
53         public void setArtifactMap(Map<String, String> artifactMap) {
54                 this.artifactMap = artifactMap;
55         }
56
57
58         public PropertyHeatMetaDefinition getPropertyHeatMetaDefinition() {
59                 return propertyHeatMetaDefinition;
60         }
61
62         public void setPropertyHeatMetaDefinition(PropertyHeatMetaDefinition propertyHeatMetaDefinition) {
63                 this.propertyHeatMetaDefinition = propertyHeatMetaDefinition;
64         }
65
66         public GroupHeatMetaDefinition() {
67                 super();
68         }
69
70         public int getGroup() {
71                 return group;
72         }
73
74         public void setGroup(int group) {
75                 this.group = group;
76         }
77
78 //      public List<String> getArtifactList() {
79 //              return artifactList;
80 //      }
81 //
82 //      public void setArtifactList(List<String> artifactList) {
83 //              this.artifactList = artifactList;
84 //      }
85
86 }