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

com.urbanairship.api.channel.parse.ChannelsResponseDeserializer Maven / Gradle / Ivy

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

package com.urbanairship.api.channel.parse;

import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import com.google.common.base.Supplier;
import com.google.common.collect.ImmutableMap;
import com.urbanairship.api.channel.model.ChannelResponse;
import com.urbanairship.api.common.parse.FieldParser;
import com.urbanairship.api.common.parse.FieldParserRegistry;
import com.urbanairship.api.common.parse.MapFieldParserRegistry;
import com.urbanairship.api.common.parse.StandardObjectDeserializer;

import java.io.IOException;

public final class ChannelsResponseDeserializer extends JsonDeserializer {

    private static final FieldParserRegistry FIELD_PARSER =
            new MapFieldParserRegistry(
                    ImmutableMap.>builder()
                            .put("ok", new FieldParser() {
                                @Override
                                public void parse(ChannelsResponseReader reader, JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {
                                    reader.readOk(jsonParser);
                                }
                            })
                            .put("next_page", new FieldParser() {
                                @Override
                                public void parse(ChannelsResponseReader reader, JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {
                                    reader.readNextPage(jsonParser);
                                }
                            })
                            .put("channel", new FieldParser() {
                                @Override
                                public void parse(ChannelsResponseReader reader, JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {
                                    reader.readChannelObject(jsonParser);
                                }
                            })
                            .put("channels", new FieldParser() {
                                @Override
                                public void parse(ChannelsResponseReader reader, JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {
                                    reader.readChannelObjects(jsonParser);
                                }
                            })
                            .build()
            );

    private final StandardObjectDeserializer deserializer;

    public ChannelsResponseDeserializer() {
        this.deserializer = new StandardObjectDeserializer(
                FIELD_PARSER,
                new Supplier() {
                    @Override
                    public ChannelsResponseReader get() {
                        return new ChannelsResponseReader();
                    }
                }
        );
    }

    @Override
    public ChannelResponse deserialize(JsonParser jsonParser, DeserializationContext
            deserializationContext)
            throws IOException {
        return deserializer.deserialize(jsonParser, deserializationContext);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy