summaryrefslogtreecommitdiffstats
path: root/orchestrator-restapi
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2021-04-12 17:00:13 +0200
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2021-04-12 20:53:51 +0200
commit52de2547b77cda5fca3dd8369d27a440841f4fb8 (patch)
treee667734cd5952f25e72c37e9336339a438743347 /orchestrator-restapi
parentf9c48dbeeaae4318226d3661591690790d085999 (diff)
Allow Jackson deserialization of model types
Diffstat (limited to 'orchestrator-restapi')
-rw-r--r--orchestrator-restapi/src/main/java/com/yahoo/vespa/orchestrator/restapi/wire/SlobrokEntryResponse.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/orchestrator-restapi/src/main/java/com/yahoo/vespa/orchestrator/restapi/wire/SlobrokEntryResponse.java b/orchestrator-restapi/src/main/java/com/yahoo/vespa/orchestrator/restapi/wire/SlobrokEntryResponse.java
index 062fa186cb6..672f391a4cd 100644
--- a/orchestrator-restapi/src/main/java/com/yahoo/vespa/orchestrator/restapi/wire/SlobrokEntryResponse.java
+++ b/orchestrator-restapi/src/main/java/com/yahoo/vespa/orchestrator/restapi/wire/SlobrokEntryResponse.java
@@ -1,6 +1,7 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.orchestrator.restapi.wire;
+import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
@@ -17,7 +18,8 @@ public class SlobrokEntryResponse {
@JsonProperty("spec")
public final String spec;
- public SlobrokEntryResponse(String name, String spec) {
+ @JsonCreator
+ public SlobrokEntryResponse(@JsonProperty("name") String name, @JsonProperty("spec") String spec) {
this.name = name;
this.spec = spec;
}