com.urbanairship.api.push.parse.notification.ios.IOSMediaContentSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
The Urban Airship Java client library
/*
* Copyright (c) 2013-2016. Urban Airship and Contributors
*/
package com.urbanairship.api.push.parse.notification.ios;
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.ios.IOSMediaContent;
import java.io.IOException;
public class IOSMediaContentSerializer extends JsonSerializer {
@Override
public void serialize(IOSMediaContent content, JsonGenerator jgen, SerializerProvider provider) throws IOException {
jgen.writeStartObject();
if(content.getBody().isPresent()) {
jgen.writeStringField("body", content.getBody().get());
}
if(content.getTitle().isPresent()) {
jgen.writeStringField("title", content.getTitle().get());
}
if(content.getSubtitle().isPresent()) {
jgen.writeStringField("subtitle", content.getSubtitle().get());
}
jgen.writeEndObject();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy