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

com.urbanairship.api.push.parse.notification.android.PublicNotificationDeserializer 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.android;

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.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 com.urbanairship.api.push.model.notification.android.PublicNotification;

import java.io.IOException;


public class PublicNotificationDeserializer extends JsonDeserializer {
    private static final FieldParserRegistry FIELD_PARSERS = new MapFieldParserRegistry(
            ImmutableMap.>builder()
                    .put("title", new FieldParser() {
                        public void parse(PublicNotificationReader reader, JsonParser json, DeserializationContext context) throws IOException {
                            reader.readTitle(json);
                        }
                    })
                    .put("summary", new FieldParser() {
                        public void parse(PublicNotificationReader reader, JsonParser json, DeserializationContext context) throws IOException {
                            reader.readSummary(json);
                        }
                    })
                    .put("alert", new FieldParser() {
                        public void parse(PublicNotificationReader reader, JsonParser json, DeserializationContext context) throws IOException {
                            reader.readAlert(json);
                        }
                    })
                    .build()
    );

    private final StandardObjectDeserializer deserializer;

    public PublicNotificationDeserializer() {
        deserializer = new StandardObjectDeserializer(
                FIELD_PARSERS,
                new Supplier() {
                    @Override
                    public PublicNotificationReader get() {
                        return new PublicNotificationReader();
                    }
                }
        );
    }

    @Override
    public PublicNotification deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException {
        return deserializer.deserialize(jp, ctxt);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy