All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.urbanairship.api.location.parse.LocationResponseReader Maven / Gradle / Ivy

There is a newer version: 9.3.0
Show newest version
/*
 * 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 - 2024 Weber Informatics LLC | Privacy Policy