com.urbanairship.api.push.parse.audience.location.RecentDateRangeDeserializer 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.audience.location;
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.audience.location.RecentDateRange;
import java.io.IOException;
public class RecentDateRangeDeserializer extends JsonDeserializer {
private static final FieldParserRegistry FIELD_PARSERS = new MapFieldParserRegistry(
ImmutableMap.>builder().build(),
/* Only need the default field parser */
(reader, parser, context) -> reader.readValue(parser));
private final StandardObjectDeserializer deserializer;
public RecentDateRangeDeserializer() {
deserializer = new StandardObjectDeserializer(
FIELD_PARSERS,
() -> new RecentDateRangeReader()
);
}
@Override
public RecentDateRange.Builder deserialize(JsonParser parser, DeserializationContext deserializationContext) throws IOException {
return deserializer.deserialize(parser, deserializationContext);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy