![JAR search and dependency download from the Maven repository](/logo.png)
com.urbanairship.api.push.parse.notification.mpns.MPNSBatchingIntervalSerializer 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.mpns;
import com.urbanairship.api.push.model.notification.mpns.MPNSPush;
import org.codehaus.jackson.JsonGenerator;
import org.codehaus.jackson.map.JsonSerializer;
import org.codehaus.jackson.map.SerializerProvider;
import java.io.IOException;
public class MPNSBatchingIntervalSerializer extends JsonSerializer {
@Override
public void serialize(MPNSPush.BatchingInterval batchingInterval, JsonGenerator jgen, SerializerProvider provider) throws IOException {
jgen.writeString(batchingInterval.name().toLowerCase());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy