aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-distribution-client/src/main/java/org/onap/sdc/utils/heat/HeatConfiguration.java
diff options
context:
space:
mode:
Diffstat (limited to 'sdc-distribution-client/src/main/java/org/onap/sdc/utils/heat/HeatConfiguration.java')
-rw-r--r--sdc-distribution-client/src/main/java/org/onap/sdc/utils/heat/HeatConfiguration.java25
1 files changed, 12 insertions, 13 deletions
diff --git a/sdc-distribution-client/src/main/java/org/onap/sdc/utils/heat/HeatConfiguration.java b/sdc-distribution-client/src/main/java/org/onap/sdc/utils/heat/HeatConfiguration.java
index ee272f4..f9d60d4 100644
--- a/sdc-distribution-client/src/main/java/org/onap/sdc/utils/heat/HeatConfiguration.java
+++ b/sdc-distribution-client/src/main/java/org/onap/sdc/utils/heat/HeatConfiguration.java
@@ -7,9 +7,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -23,20 +23,19 @@ package org.onap.sdc.utils.heat;
import java.util.Map;
public class HeatConfiguration {
-
- //All the rest of heat file is not needed for now...
- Map<String, HeatParameter> parameters;
-
- public Map<String, HeatParameter> getParameters() {
- return parameters;
- }
+ //All the rest of heat file is not needed for now...
+ private Map<String, HeatParameter> parameters;
- public void setParameters(Map<String, HeatParameter> parameters) {
- this.parameters = parameters;
- }
+ public Map<String, HeatParameter> getParameters() {
+ return parameters;
+ }
+
+
+ public void setParameters(Map<String, HeatParameter> parameters) {
+ this.parameters = parameters;
+ }
-
}