diff options
author | Ittay Stern <ittay.stern@att.com> | 2019-07-25 13:24:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-07-25 13:24:03 +0000 |
commit | b75aff807050009af821f2072417d8806efd56a2 (patch) | |
tree | d140d5b14766b2fe902654d13ae8f0ee8c916d39 /vid-app-common/src/main/java | |
parent | b707a10fd93699954ce47b32b1a2e61a40f26918 (diff) | |
parent | ec47169ebb8d480fed1f4bf513a0e79e0243da4e (diff) |
Merge "Merge workflow from vid to onap, fix workflow selenium tests"
Diffstat (limited to 'vid-app-common/src/main/java')
-rw-r--r-- | vid-app-common/src/main/java/org/onap/vid/model/Subscriber.java | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/model/Subscriber.java b/vid-app-common/src/main/java/org/onap/vid/model/Subscriber.java index b44bce163..9ec917d9c 100644 --- a/vid-app-common/src/main/java/org/onap/vid/model/Subscriber.java +++ b/vid-app-common/src/main/java/org/onap/vid/model/Subscriber.java @@ -21,11 +21,16 @@ package org.onap.vid.model; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; +import java.util.Map; + /** * Created by Oren on 7/4/17. */ + +@JsonIgnoreProperties(ignoreUnknown = true) public class Subscriber { @JsonProperty("global-customer-id") @@ -39,8 +44,4 @@ public class Subscriber { @JsonProperty("resource-version") public String resourceVersion; - - - - } |