CLM Changes
[music.git] / src / main / java / org / onap / music / datastore / jsonobjects / JsonLeasedLock.java
index 85895ba..497e17d 100644 (file)
  */
 package org.onap.music.datastore.jsonobjects;
 
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
+
 import io.swagger.annotations.ApiModel;
 import io.swagger.annotations.ApiModelProperty;
 
 @ApiModel(value = "JsonTable", description = "model for leased lock")
+@JsonIgnoreProperties(ignoreUnknown = true)
 public class JsonLeasedLock {
     long leasePeriod;
     String notifyUrl;