com.urbanairship.api.location.parse.LocationResponseReader 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.location.parse;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.type.TypeReference;
import com.urbanairship.api.common.parse.APIParsingException;
import com.urbanairship.api.common.parse.JsonObjectReader;
import com.urbanairship.api.location.model.LocationResponse;
import com.urbanairship.api.location.model.LocationView;
import java.io.IOException;
import java.util.List;
public class LocationResponseReader implements JsonObjectReader {
private final LocationResponse.Builder builder;
public LocationResponseReader() {
this.builder = LocationResponse.newBuilder();
}
public void readFeatures(JsonParser jsonParser) throws IOException {
builder.addAllFeatures((List) jsonParser.readValueAs(new TypeReference>() {
}));
}
@Override
public LocationResponse validateAndBuild() throws IOException {
try {
return builder.build();
} catch (Exception e) {
throw new APIParsingException(e.getMessage(), e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy