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

com.urbanairship.api.push.parse.notification.wns.WNSGlyphSerializer Maven / Gradle / Ivy

There is a newer version: 9.5.0
Show newest version
/*
 * Copyright 2013 Urban Airship and Contributors
 */

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

import com.urbanairship.api.push.model.notification.wns.WNSBadgeData;
import org.codehaus.jackson.JsonGenerator;
import org.codehaus.jackson.map.JsonSerializer;
import org.codehaus.jackson.map.SerializerProvider;

import java.io.IOException;

public class WNSGlyphSerializer extends JsonSerializer {
    @Override
    public void serialize(WNSBadgeData.Glyph glyph, JsonGenerator jgen, SerializerProvider provider) throws IOException {
        jgen.writeString(glyph.getIdentifier());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy