Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / client / cds / beans / ConfigDeployRequestVnf.java
index 53b956d..c5fc030 100644 (file)
@@ -5,42 +5,39 @@ import com.fasterxml.jackson.annotation.JsonProperty;
 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
 
 @JsonInclude(JsonInclude.Include.NON_NULL)
-@JsonPropertyOrder({
-"config-deploy-properties",
-"resolution-key"
-})
+@JsonPropertyOrder({"config-deploy-properties", "resolution-key"})
 public class ConfigDeployRequestVnf {
-       @JsonProperty("resolution-key")
-       private String resolutionKey;
-
-       @JsonProperty("config-deploy-properties")
-       private ConfigDeployPropertiesForVnf configDeployPropertiesForVnf;
-
-       public String getResolutionKey() {
-               return resolutionKey;
-       }
-
-       public void setResolutionKey(String resolutionKey) {
-               this.resolutionKey = resolutionKey;
-       }
-
-       public ConfigDeployPropertiesForVnf getConfigDeployPropertiesForVnf() {
-               return configDeployPropertiesForVnf;
-       }
-
-       public void setConfigDeployPropertiesForVnf(ConfigDeployPropertiesForVnf configDeployPropertiesForVnf) {
-               this.configDeployPropertiesForVnf = configDeployPropertiesForVnf;
-       }
-
-       @Override
-       public String toString() {
-               final StringBuilder sb = new StringBuilder("{\"config-deploy-request\":{");
-               sb.append("\"resolution-key\":").append("\"").append(resolutionKey).append("\"");
-               sb.append(", \"config-deploy-properties\":").append(configDeployPropertiesForVnf.toString());
-               sb.append('}');
-               sb.append('}');
-
-               return sb.toString();
-       }
+    @JsonProperty("resolution-key")
+    private String resolutionKey;
+
+    @JsonProperty("config-deploy-properties")
+    private ConfigDeployPropertiesForVnf configDeployPropertiesForVnf;
+
+    public String getResolutionKey() {
+        return resolutionKey;
+    }
+
+    public void setResolutionKey(String resolutionKey) {
+        this.resolutionKey = resolutionKey;
+    }
+
+    public ConfigDeployPropertiesForVnf getConfigDeployPropertiesForVnf() {
+        return configDeployPropertiesForVnf;
+    }
+
+    public void setConfigDeployPropertiesForVnf(ConfigDeployPropertiesForVnf configDeployPropertiesForVnf) {
+        this.configDeployPropertiesForVnf = configDeployPropertiesForVnf;
+    }
+
+    @Override
+    public String toString() {
+        final StringBuilder sb = new StringBuilder("{\"config-deploy-request\":{");
+        sb.append("\"resolution-key\":").append("\"").append(resolutionKey).append("\"");
+        sb.append(", \"config-deploy-properties\":").append(configDeployPropertiesForVnf.toString());
+        sb.append('}');
+        sb.append('}');
+
+        return sb.toString();
+    }
 
 }