CADI and a few small updates.
[music.git] / src / main / java / org / onap / music / datastore / jsonobjects / JsonLeasedLock.java
index 497e17d..edb3085 100644 (file)
@@ -19,6 +19,7 @@
  * ============LICENSE_END=============================================
  * ====================================================================
  */
+
 package org.onap.music.datastore.jsonobjects;
 
 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@@ -29,8 +30,8 @@ import io.swagger.annotations.ApiModelProperty;
 @ApiModel(value = "JsonTable", description = "model for leased lock")
 @JsonIgnoreProperties(ignoreUnknown = true)
 public class JsonLeasedLock {
-    long leasePeriod;
-    String notifyUrl;
+    private long leasePeriod;
+    private String notifyUrl;
 
     @ApiModelProperty(value = "Lease period")
     public long getLeasePeriod() {