1 package org.openkilda.messaging.ctrl;
3 import com.fasterxml.jackson.annotation.JsonInclude;
4 import com.fasterxml.jackson.annotation.JsonProperty;
5 import com.fasterxml.jackson.databind.annotation.JsonSerialize;
9 @JsonInclude(JsonInclude.Include.NON_NULL)
11 private static final long serialVersionUID = 1L;
13 @JsonProperty(
"component")
14 private String component;
16 @JsonProperty(
"task_id")
17 private Integer taskId;
19 @JsonProperty(
"topology")
30 @JsonProperty(
"component") String component,
31 @JsonProperty(
"task_id") Integer taskId,
32 @JsonProperty(
"topology") String
topology) {
33 this.component = component;
ResponseData( @JsonProperty("component") String component, @JsonProperty("task_id") Integer taskId, @JsonProperty("topology") String topology)