diff options
author | RachelF <rachel.fishbein@intl.att.com> | 2019-07-23 09:05:23 +0300 |
---|---|---|
committer | RachelF <rachel.fishbein@intl.att.com> | 2019-07-25 14:37:39 +0300 |
commit | ec47169ebb8d480fed1f4bf513a0e79e0243da4e (patch) | |
tree | 0cc3482f1edb010e4fb5400d818302e9c5978b7d /vid-app-common/src/main/java | |
parent | bfcf8e43eab481162f41eb5076a7bf7c67f0ad22 (diff) |
Merge workflow from vid to onap, fix workflow selenium tests
Issue-ID: VID-532
Change-Id: I5ae0a74d382cd31a9da1ec5b1220c5322f3abb40
Signed-off-by: RachelF <rachel.fishbein@intl.att.com>
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; - - - - } |