com.urbanairship.api.common.parse.MapOfStringsDeserializer 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.common.parse;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.type.TypeReference;
import java.io.IOException;
import java.util.Map;
public class MapOfStringsDeserializer {
public static final MapOfStringsDeserializer INSTANCE = new MapOfStringsDeserializer();
private MapOfStringsDeserializer() { }
public Map deserialize(JsonParser parser, String fieldName) throws APIParsingException {
try {
return parser.readValueAs(new TypeReference
© 2015 - 2024 Weber Informatics LLC | Privacy Policy