com.urbanairship.api.channel.parse.attributes.ChannelAttributesResponseDeserializer 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
package com.urbanairship.api.channel.parse.attributes;
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.channel.model.ChannelAttributesResponse;
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 java.io.IOException;
public class ChannelAttributesResponseDeserializer extends JsonDeserializer {
private static final FieldParserRegistry FIELD_PARSERS = new MapFieldParserRegistry(
ImmutableMap.>builder()
.put("ok", new FieldParser() {
@Override
public void parse(ChannelAttributesResponseReader reader, JsonParser jsonParser, DeserializationContext context) throws IOException {
reader.readOk(jsonParser);
}
})
.put("warning", new FieldParser() {
@Override
public void parse(ChannelAttributesResponseReader reader, JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {
reader.readWarning(jsonParser);
}
})
.put("error", new FieldParser() {
@Override
public void parse(ChannelAttributesResponseReader reader, JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {
reader.readError(jsonParser);
}
})
.put("details", new FieldParser() {
@Override
public void parse(ChannelAttributesResponseReader reader, JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {
reader.readErrorDetails(jsonParser);
}
})
.build()
);
private final StandardObjectDeserializer deserializer;
public ChannelAttributesResponseDeserializer() {
deserializer = new StandardObjectDeserializer(
FIELD_PARSERS,
new Supplier() {
@Override
public ChannelAttributesResponseReader get() {
return new ChannelAttributesResponseReader();
}
}
);
}
@Override
public ChannelAttributesResponse deserialize(JsonParser jsonParser, DeserializationContext context) throws IOException {
return deserializer.deserialize(jsonParser, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy