Sync Integ to Master
[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 String groupName;
32
33 //      private List<String> artifactList = new ArrayList<String>();
34         private List<HeatMetaFirstLevelDefinition> artifactList = new ArrayList<HeatMetaFirstLevelDefinition>();
35         @Override
36         public String toString() {
37                 return "GroupHeatMetaDefinition [group=" + group + ", artifactList=" + artifactList + ", artifactMap=" + artifactMap + ", propertyHeatMetaDefinition=" + propertyHeatMetaDefinition + "]";
38         }
39
40         public List<HeatMetaFirstLevelDefinition> getArtifactList() {
41                 return artifactList;
42         }
43
44         public void setArtifactList(List<HeatMetaFirstLevelDefinition> artifactList) {
45                 this.artifactList = artifactList;
46         }
47
48         private Map<String, String> artifactMap = new HashMap<>();
49         PropertyHeatMetaDefinition propertyHeatMetaDefinition;
50         
51         public Map<String, String> getArtifactMap() {
52                 return artifactMap;
53         }
54
55         public void setArtifactMap(Map<String, String> artifactMap) {
56                 this.artifactMap = artifactMap;
57         }
58
59
60         public PropertyHeatMetaDefinition getPropertyHeatMetaDefinition() {
61                 return propertyHeatMetaDefinition;
62         }
63
64         public void setPropertyHeatMetaDefinition(PropertyHeatMetaDefinition propertyHeatMetaDefinition) {
65                 this.propertyHeatMetaDefinition = propertyHeatMetaDefinition;
66         }
67
68         public GroupHeatMetaDefinition() {
69                 super();
70         }
71
72         public int getGroup() {
73                 return group;
74         }
75
76         public void setGroup(int group) {
77                 this.group = group;
78         }
79
80         public String getGroupName() {
81                 return groupName;
82         }
83
84         public void setGroupName(String groupName) {
85                 this.groupName = groupName;
86         }
87
88         //      public List<String> getArtifactList() {
89 //              return artifactList;
90 //      }
91 //
92 //      public void setArtifactList(List<String> artifactList) {
93 //              this.artifactList = artifactList;
94 //      }
95
96 }