Fix the java code style issue.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / aai / EsrThirdpartySdnc.java
index 89e1ffd..c478d54 100644 (file)
 package org.onap.aai.esr.entity.aai;
 
 import java.io.Serializable;
-
 import com.google.gson.annotations.SerializedName;
 
 public class EsrThirdpartySdnc implements Serializable {
-public static final long serialVersionUID = 1L;
-  
-  @SerializedName("thirdparty-sdnc-id")
-  private String thirdpartySdncId;
-  
-  @SerializedName("location")
-  private String location;
+    public static final long serialVersionUID = 1L;
+
+    @SerializedName("thirdparty-sdnc-id")
+    private String thirdpartySdncId;
+
+    @SerializedName("location")
+    private String location;
+
+    @SerializedName("product-name")
+    private String productName;
 
-  @SerializedName("product-name")
-  private String productName;
-  
-  @SerializedName("resource-version")
-  private String resourceVersion;
+    @SerializedName("resource-version")
+    private String resourceVersion;
 
-  public String getThirdpartySdncId() {
-    return thirdpartySdncId;
-  }
+    public String getThirdpartySdncId() {
+        return thirdpartySdncId;
+    }
 
-  public void setThirdpartySdncId(String thirdpartySdncId) {
-    this.thirdpartySdncId = thirdpartySdncId;
-  }
+    public void setThirdpartySdncId(String thirdpartySdncId) {
+        this.thirdpartySdncId = thirdpartySdncId;
+    }
 
-  public String getLocation() {
-    return location;
-  }
+    public String getLocation() {
+        return location;
+    }
 
-  public void setLocation(String location) {
-    this.location = location;
-  }
+    public void setLocation(String location) {
+        this.location = location;
+    }
 
-  public String getProductName() {
-    return productName;
-  }
+    public String getProductName() {
+        return productName;
+    }
 
-  public void setProductName(String productName) {
-    this.productName = productName;
-  }
+    public void setProductName(String productName) {
+        this.productName = productName;
+    }
 
-  public String getResourceVersion() {
-    return resourceVersion;
-  }
+    public String getResourceVersion() {
+        return resourceVersion;
+    }
 
-  public void setResourceVersion(String resourceVersion) {
-    this.resourceVersion = resourceVersion;
-  }
+    public void setResourceVersion(String resourceVersion) {
+        this.resourceVersion = resourceVersion;
+    }
 }