![JAR search and dependency download from the Maven repository](/logo.png)
com.urbanairship.api.reports.parse.PerPushCountsDeserializer 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.reports.parse;
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.reports.model.PerPushCounts;
import org.codehaus.jackson.JsonParser;
import org.codehaus.jackson.map.DeserializationContext;
import org.codehaus.jackson.map.JsonDeserializer;
import java.io.IOException;
public final class PerPushCountsDeserializer extends JsonDeserializer {
private static final FieldParserRegistry FIELD_PARSERS =
new MapFieldParserRegistry(ImmutableMap.>builder()
.put("direct_responses", new FieldParser() {
@Override
public void parse(PerPushCountsReader reader, JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {
reader.readDirectResponses(jsonParser);
}
})
.put("influenced_responses", new FieldParser() {
@Override
public void parse(PerPushCountsReader reader, JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {
reader.readInfluencedResponses(jsonParser);
}
})
.put("sends", new FieldParser() {
@Override
public void parse(PerPushCountsReader reader, JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {
reader.readSends(jsonParser);
}
})
.build()
);
private final StandardObjectDeserializer deserializer;
public PerPushCountsDeserializer() {
deserializer = new StandardObjectDeserializer(
FIELD_PARSERS,
new Supplier() {
@Override
public PerPushCountsReader get() {
return new PerPushCountsReader();
}
}
);
}
@Override
public PerPushCounts deserialize(JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {
return deserializer.deserialize(jsonParser, deserializationContext);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy