com.urbanairship.api.push.parse.notification.ios.IOSDevicePayloadDeserializer 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.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.ios.IOSDevicePayload;
import org.codehaus.jackson.JsonParser;
import org.codehaus.jackson.map.DeserializationContext;
import org.codehaus.jackson.map.JsonDeserializer;
import java.io.IOException;
public class IOSDevicePayloadDeserializer extends JsonDeserializer {
private static final FieldParserRegistry FIELD_PARSERS = new MapFieldParserRegistry(
ImmutableMap.>builder()
.put("alert", new FieldParser() {
public void parse(IOSDevicePayloadReader reader, JsonParser json, DeserializationContext context) throws IOException {
reader.readAlert(json, context);
}
})
.put("sound", new FieldParser() {
public void parse(IOSDevicePayloadReader reader, JsonParser json, DeserializationContext context) throws IOException {
reader.readSound(json);
}
})
.put("badge", new FieldParser() {
public void parse(IOSDevicePayloadReader reader, JsonParser json, DeserializationContext context) throws IOException {
reader.readBadge(json);
}
})
.put("content-available", new FieldParser() {
public void parse(IOSDevicePayloadReader reader, JsonParser json, DeserializationContext context) throws IOException {
reader.readContentAvailable(json);
}
})
.put("content_available", new FieldParser() {
public void parse(IOSDevicePayloadReader reader, JsonParser json, DeserializationContext context) throws IOException {
reader.readContentAvailable(json);
}
})
.put("extra", new FieldParser() {
public void parse(IOSDevicePayloadReader reader, JsonParser json, DeserializationContext context) throws IOException {
reader.readExtra(json);
}
})
.put("category", new FieldParser() {
public void parse(IOSDevicePayloadReader reader, JsonParser json, DeserializationContext context) throws IOException {
reader.readCategory(json);
}
})
.put("interactive", new FieldParser() {
public void parse(IOSDevicePayloadReader reader, JsonParser json, DeserializationContext context) throws IOException {
reader.readInteractive(json);
}
})
.put("expiry", new FieldParser() {
public void parse(IOSDevicePayloadReader reader, JsonParser json, DeserializationContext context) throws IOException {
reader.readExpiry(json);
}
})
.put("priority", new FieldParser() {
public void parse(IOSDevicePayloadReader reader, JsonParser json, DeserializationContext context) throws IOException {
reader.readPriority(json);
}
})
.put("title", new FieldParser() {
public void parse(IOSDevicePayloadReader reader, JsonParser json, DeserializationContext context) throws IOException {
reader.readTitle(json);
}
})
.build()
);
private final StandardObjectDeserializer deserializer;
public IOSDevicePayloadDeserializer() {
deserializer = new StandardObjectDeserializer(
FIELD_PARSERS,
new Supplier() {
@Override
public IOSDevicePayloadReader get() {
return new IOSDevicePayloadReader();
}
}
);
}
@Override
public IOSDevicePayload deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException {
return deserializer.deserialize(jp, ctxt);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy