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

com.urbanairship.api.segments.parse.SegmentListingResponseReader Maven / Gradle / Ivy

There is a newer version: 9.3.0
Show newest version
package com.urbanairship.api.segments.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.segments.model.SegmentListingResponse;
import com.urbanairship.api.segments.model.SegmentListingView;

import java.io.IOException;
import java.util.List;

public final class SegmentListingResponseReader implements JsonObjectReader {
    private final SegmentListingResponse.Builder builder;

    public SegmentListingResponseReader() {
        this.builder = SegmentListingResponse.newBuilder();
    }

    public void readNextPage(JsonParser jsonParser) throws IOException {
        builder.setNextPage(jsonParser.readValueAs(String.class));
    }

    public void readSegments(JsonParser jsonParser) throws IOException {
        builder.addAllSegmentObjects(
                (List) jsonParser.readValueAs(new TypeReference>() {}));
    }

    @Override
    public SegmentListingResponse validateAndBuild() throws IOException {
        try {
            return builder.build();
        } catch (Exception ex) {
            throw new APIParsingException(ex.getMessage());
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy