Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / onap / so / adapters / nwrest / UpdateNetworkResponse.java
index 7ce66ba..3dee803 100644 (file)
@@ -23,56 +23,54 @@ package org.onap.so.adapters.nwrest;
 
 
 import java.util.Map;
-
 import javax.xml.bind.annotation.XmlRootElement;
-
 import com.fasterxml.jackson.annotation.JsonRootName;
 
 @JsonRootName("updateNetworkResponse")
 @XmlRootElement(name = "updateNetworkResponse")
 public class UpdateNetworkResponse extends NetworkResponseCommon {
-       
-       /**
-        * 
-        */
-       private static final long serialVersionUID = -7528214382414366136L;
-       private String networkId;
-       private String neutronNetworkId;
-       private Map<String, String> subnetMap;
 
-       public UpdateNetworkResponse() {
-               /* Empty Constructor */
-       }
+    /**
+     * 
+     */
+    private static final long serialVersionUID = -7528214382414366136L;
+    private String networkId;
+    private String neutronNetworkId;
+    private Map<String, String> subnetMap;
+
+    public UpdateNetworkResponse() {
+        /* Empty Constructor */
+    }
 
-       public UpdateNetworkResponse(String networkId, String neutronNetworkId,
-                                                                Map<String, String> subnetMap, String messageId) {
-               super(messageId);
-               this.networkId = networkId;
-               this.neutronNetworkId = neutronNetworkId;
-               this.subnetMap = subnetMap;
-       }
+    public UpdateNetworkResponse(String networkId, String neutronNetworkId, Map<String, String> subnetMap,
+            String messageId) {
+        super(messageId);
+        this.networkId = networkId;
+        this.neutronNetworkId = neutronNetworkId;
+        this.subnetMap = subnetMap;
+    }
 
-       public String getNetworkId() {
-               return networkId;
-       }
+    public String getNetworkId() {
+        return networkId;
+    }
 
-       public void setNetworkId(String networkId) {
-               this.networkId = networkId;
-       }
+    public void setNetworkId(String networkId) {
+        this.networkId = networkId;
+    }
 
-       public String getNeutronNetworkId() {
-               return neutronNetworkId;
-       }
+    public String getNeutronNetworkId() {
+        return neutronNetworkId;
+    }
 
-       public void setNeutronNetworkId(String neutronNetworkId) {
-               this.neutronNetworkId = neutronNetworkId;
-       }
+    public void setNeutronNetworkId(String neutronNetworkId) {
+        this.neutronNetworkId = neutronNetworkId;
+    }
 
-       public Map<String, String> getSubnetMap() {
-               return subnetMap;
-       }
+    public Map<String, String> getSubnetMap() {
+        return subnetMap;
+    }
 
-       public void setSubnetMap(Map<String, String> subnetMap) {
-               this.subnetMap = subnetMap;
-       }
+    public void setSubnetMap(Map<String, String> subnetMap) {
+        this.subnetMap = subnetMap;
+    }
 }