Update junit test
[music.git] / src / main / java / org / onap / music / datastore / jsonobjects / JsonInsert.java
index 456fb95..09cd65d 100644 (file)
@@ -20,6 +20,7 @@
  * ============LICENSE_END=============================================
  * ====================================================================
  */
+
 package org.onap.music.datastore.jsonobjects;
 
 import java.io.ByteArrayOutputStream;
@@ -42,6 +43,7 @@ import org.onap.music.eelf.logging.format.ErrorTypes;
 @ApiModel(value = "JsonTable", description = "Json model for table vlaues insert")
 @JsonIgnoreProperties(ignoreUnknown = true)
 public class JsonInsert implements Serializable {
+    private static final long serialVersionUID = 1L;
     private String keyspaceName;
     private String tableName;
     private transient Map<String, Object> values;
@@ -54,12 +56,12 @@ public class JsonInsert implements Serializable {
 
     @ApiModelProperty(value = "objectMap")
     public Map<String, byte[]> getObjectMap() {
-               return objectMap;
-       }
+        return objectMap;
+    }
     
     public void setObjectMap(Map<String, byte[]> objectMap) {
-               this.objectMap = objectMap;
-       }
+        this.objectMap = objectMap;
+    }
     
     @ApiModelProperty(value = "keyspace")
     public String getKeyspaceName() {
@@ -116,11 +118,11 @@ public class JsonInsert implements Serializable {
     }
 
     @ApiModelProperty(value = "Information for selecting specific rows for insert")
-    public Map<String, Object> getRow_specification() {
+    public Map<String, Object> getRowSpecification() {
         return rowSpecification;
     }
 
-    public void setRow_specification(Map<String, Object> rowSpecification) {
+    public void setRowSpecification(Map<String, Object> rowSpecification) {
         this.rowSpecification = rowSpecification;
     }