[SDC-29] rebase continue work to align source
[sdc.git] / ui-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / HeatWithParametersDefinition.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.List;
24
25 import org.openecomp.sdc.be.datatypes.elements.HeatParameterDataDefinition;
26
27 public class HeatWithParametersDefinition {
28
29         private String heatLabel;
30         private String heatEnvLabel;
31         private String heatArtifactType;
32         private String heatEnvArtifactType;
33         private String heatArtifactDisplayName;
34         private List<HeatParameterDataDefinition> heatParameterDefinition;
35         
36         public HeatWithParametersDefinition(String heatLabel, String heatEnvLabel, String heatArtifactType, String heatEnvArtifactType, String heatArtifactDisplayName, List<HeatParameterDataDefinition> heatParameterDefinition) {
37                 super();
38                 this.heatLabel = heatLabel;
39                 this.heatEnvLabel = heatEnvLabel;
40                 this.heatArtifactType = heatArtifactType;
41                 this.heatEnvArtifactType = heatEnvArtifactType;
42                 this.heatArtifactDisplayName = heatArtifactDisplayName;
43                 this.heatParameterDefinition = heatParameterDefinition;
44         }
45
46         public String getHeatArtifactDisplayName() {
47                 return heatArtifactDisplayName;
48         }
49
50         public void setHeatArtifactDisplayName(String heatArtifactDisplayName) {
51                 this.heatArtifactDisplayName = heatArtifactDisplayName;
52         }
53
54         public String getHeatLabel() {
55                 return heatLabel;
56         }
57
58         public void setHeatLabel(String heatLabel) {
59                 this.heatLabel = heatLabel;
60         }
61
62         public String getHeatEnvLabel() {
63                 return heatEnvLabel;
64         }
65
66         public void setHeatEnvLabel(String heatEnvLabel) {
67                 this.heatEnvLabel = heatEnvLabel;
68         }
69
70         public String getHeatArtifactType() {
71                 return heatArtifactType;
72         }
73
74         public void setHeatArtifactType(String heatArtifactType) {
75                 this.heatArtifactType = heatArtifactType;
76         }
77
78         public String getHeatEnvArtifactType() {
79                 return heatEnvArtifactType;
80         }
81
82         public void setHeatEnvArtifactType(String heatEnvArtifactType) {
83                 this.heatEnvArtifactType = heatEnvArtifactType;
84         }
85
86         public List<HeatParameterDataDefinition> getHeatParameterDefinition() {
87                 return heatParameterDefinition;
88         }
89
90         public void setHeatParameterDefinition(List<HeatParameterDataDefinition> heatParameterDefinition) {
91                 this.heatParameterDefinition = heatParameterDefinition;
92         }
93
94         @Override
95         public String toString() {
96                 return "HeatWithParametersDefinition [heatLabel=" + heatLabel + ", heatEnvLabel=" + heatEnvLabel + ", heatArtifactType=" + heatArtifactType + ", heatEnvArtifactType=" + heatEnvArtifactType + ", heatArtifactDisplayName="
97                                 + heatArtifactDisplayName + ", heatParameterDefinition=" + heatParameterDefinition + "]";
98         }
99
100         
101         
102 }