Update appc-config-parms to use onap packaging
[appc.git] / appc-config / appc-config-params / provider / src / main / java / org / onap / sdnc / config / params / data / Parameter.java
index aaa4576..5ab33b5 100644 (file)
  * ============LICENSE_END=========================================================
  */
 
-package org.openecomp.sdnc.config.params.data;
+package org.onap.sdnc.config.params.data;
 
 import java.util.List;
-
 import com.fasterxml.jackson.annotation.JsonProperty;
 
 public class Parameter {
-       private String name;
-       private String description;
-       private String type;
-       private boolean required;
-       private String source;
-
-       @JsonProperty("rule-type")
-       private String ruleType;
-
-       @JsonProperty("default")
-       private String defaultValue;
+    private String name;
+    private String description;
+    private String type;
+    private boolean required;
+    private String source;
 
-       @JsonProperty("request-keys")
-       private List<RequestKey> requestKeys;
+    @JsonProperty("rule-type")
+    private String ruleType;
 
-       @JsonProperty("response-keys")
-       private List<ResponseKey> responseKeys;
+    @JsonProperty("default")
+    private String defaultValue;
 
-       public String getName() {
-               return name;
-       }
+    @JsonProperty("request-keys")
+    private List<RequestKey> requestKeys;
 
-       public void setName(String name) {
-               this.name = name;
-       }
+    @JsonProperty("response-keys")
+    private List<ResponseKey> responseKeys;
 
-       public String getDescription() {
-               return description;
-       }
+    public String getName() {
+        return name;
+    }
 
-       public void setDescription(String description) {
-               this.description = description;
-       }
+    public void setName(String name) {
+        this.name = name;
+    }
 
-       public String getType() {
-               return type;
-       }
+    public String getDescription() {
+        return description;
+    }
 
-       public void setType(String type) {
-               this.type = type;
-       }
+    public void setDescription(String description) {
+        this.description = description;
+    }
 
-       public boolean isRequired() {
-               return required;
-       }
+    public String getType() {
+        return type;
+    }
 
-       public void setRequired(boolean required) {
-               this.required = required;
-       }
+    public void setType(String type) {
+        this.type = type;
+    }
 
-       public String getSource() {
-               return source;
-       }
+    public boolean isRequired() {
+        return required;
+    }
 
-       public void setSource(String source) {
-               this.source = source;
-       }
+    public void setRequired(boolean required) {
+        this.required = required;
+    }
 
-       public String getRuleType() {
-               return ruleType;
-       }
+    public String getSource() {
+        return source;
+    }
 
-       public void setRuleType(String ruleType) {
-               this.ruleType = ruleType;
-       }
+    public void setSource(String source) {
+        this.source = source;
+    }
 
-       public String getDefaultValue() {
-               return defaultValue;
-       }
+    public String getRuleType() {
+        return ruleType;
+    }
 
-       public void setDefaultValue(String defaultValue) {
-               this.defaultValue = defaultValue;
-       }
+    public void setRuleType(String ruleType) {
+        this.ruleType = ruleType;
+    }
 
-       public List<RequestKey> getRequestKeys() {
-               return requestKeys;
-       }
+    public String getDefaultValue() {
+        return defaultValue;
+    }
 
-       public void setRequestKeys(List<RequestKey> requestKeys) {
-               this.requestKeys = requestKeys;
-       }
+    public void setDefaultValue(String defaultValue) {
+        this.defaultValue = defaultValue;
+    }
 
-       public List<ResponseKey> getResponseKeys() {
-               return responseKeys;
-       }
+    public List<RequestKey> getRequestKeys() {
+        return requestKeys;
+    }
 
-       public void setResponseKeys(List<ResponseKey> responseKeys) {
-               this.responseKeys = responseKeys;
-       }
+    public void setRequestKeys(List<RequestKey> requestKeys) {
+        this.requestKeys = requestKeys;
+    }
 
+    public List<ResponseKey> getResponseKeys() {
+        return responseKeys;
+    }
 
+    public void setResponseKeys(List<ResponseKey> responseKeys) {
+        this.responseKeys = responseKeys;
+    }