All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.urbanairship.api.push.parse.notification.InteractiveSerializer Maven / Gradle / Ivy

There is a newer version: 9.3.0
Show newest version
/*
 * Copyright (c) 2013-2016.  Urban Airship and Contributors
 */

package com.urbanairship.api.push.parse.notification;

import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.urbanairship.api.push.model.notification.Interactive;
import com.urbanairship.api.push.model.notification.actions.Actions;

import java.io.IOException;

public class InteractiveSerializer extends JsonSerializer {
    @Override
    public void serialize(Interactive value, JsonGenerator jgen, SerializerProvider provider) throws IOException {
        jgen.writeStartObject();
        jgen.writeStringField("type", value.getType());
        if (value.getButtonActions().size() > 0) {
            jgen.writeObjectFieldStart("button_actions");
            for (String buttonID : value.getButtonActions().keySet()) {
                Actions actions = value.getButtonActions().get(buttonID);
                jgen.writeObjectField(buttonID, actions);
            }
            jgen.writeEndObject();
        }
        jgen.writeEndObject();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy