com.urbanairship.api.common.parse.StringFieldDeserializer 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 2013 Urban Airship and Contributors
*/
package com.urbanairship.api.common.parse;
import org.codehaus.jackson.JsonParser;
import org.codehaus.jackson.JsonToken;
import java.io.IOException;
public class StringFieldDeserializer {
public static final StringFieldDeserializer INSTANCE = new StringFieldDeserializer();
private StringFieldDeserializer() { }
public String deserialize(JsonParser parser, String fieldName) throws IOException {
JsonToken token = parser.getCurrentToken();
if (token != JsonToken.VALUE_STRING) {
throw new APIParsingException(String.format("\"%s\" field is expected to be a string", fieldName));
}
return parser.getText();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy