2 * Copyright © 2021 Orange, Inc. and others. All rights reserved.
4 * This program and the accompanying materials are made available under the
5 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 * and is available at http://www.eclipse.org/legal/epl-v10.html
8 package org.opendaylight.transportpce.dmaap.client.resource.config;
10 import com.fasterxml.jackson.core.JsonGenerator;
11 import com.fasterxml.jackson.databind.SerializerProvider;
12 import com.fasterxml.jackson.databind.ser.std.StdSerializer;
13 import java.io.IOException;
14 import org.opendaylight.yang.gen.v1.nbi.notifications.rev210628.PublishNotificationService;
16 // This class is a temporary workaround while waiting jackson
17 // support in yang tools https://git.opendaylight.org/gerrit/c/yangtools/+/94852
18 public class PublishNotificationServiceSerializer extends StdSerializer<PublishNotificationService> {
19 private static final long serialVersionUID = 1L;
21 public PublishNotificationServiceSerializer() {
22 super(PublishNotificationService.class);
26 public void serialize(PublishNotificationService value, JsonGenerator gen, SerializerProvider provider)
29 gen.writeStartObject();
30 gen.writeStringField("common-id", value.getCommonId());
31 gen.writeStringField("message", value.getMessage());
32 gen.writeStringField("response-failed", value.getResponseFailed());
33 gen.writeStringField("service-name", value.getServiceName());
34 gen.writeStringField("topic", value.getTopic());
35 if (value.getOperationalState() != null) {
36 gen.writeStringField("operational-state", value.getOperationalState().getName());
38 gen.writeObjectField("service-a-end", value.getServiceAEnd());
39 gen.writeObjectField("service-z-end", value.getServiceZEnd());