summaryrefslogtreecommitdiffstats
path: root/vespa-athenz
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@oath.com>2018-06-04 14:44:49 +0200
committerBjørn Christian Seime <bjorncs@oath.com>2018-06-04 14:44:49 +0200
commit825916fb20f86ee094b553525d2a365e8c9f244a (patch)
treeeae8a142c913272cde654f75a9d5a4957b991520 /vespa-athenz
parentd6a1c149abff57111947160131e7af60a3a258d5 (diff)
Add missing '@JsonIgnoreProperties' property to VespaUniqueInstanceIdEntity
Diffstat (limited to 'vespa-athenz')
-rw-r--r--vespa-athenz/src/main/java/com/yahoo/vespa/athenz/identityprovider/api/bindings/VespaUniqueInstanceIdEntity.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/vespa-athenz/src/main/java/com/yahoo/vespa/athenz/identityprovider/api/bindings/VespaUniqueInstanceIdEntity.java b/vespa-athenz/src/main/java/com/yahoo/vespa/athenz/identityprovider/api/bindings/VespaUniqueInstanceIdEntity.java
index 3127752ac7d..3c521e992ad 100644
--- a/vespa-athenz/src/main/java/com/yahoo/vespa/athenz/identityprovider/api/bindings/VespaUniqueInstanceIdEntity.java
+++ b/vespa-athenz/src/main/java/com/yahoo/vespa/athenz/identityprovider/api/bindings/VespaUniqueInstanceIdEntity.java
@@ -1,6 +1,7 @@
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.athenz.identityprovider.api.bindings;
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
@@ -8,6 +9,7 @@ import java.util.Objects;
/**
* @author bjorncs
*/
+@JsonIgnoreProperties(ignoreUnknown = true)
public class VespaUniqueInstanceIdEntity {
@JsonProperty("tenant")