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

com.urbanairship.api.reports.parse.DeviceStatsReader Maven / Gradle / Ivy

There is a newer version: 9.3.0
Show newest version
package com.urbanairship.api.reports.parse;

import com.fasterxml.jackson.core.JsonParser;
import com.urbanairship.api.common.parse.APIParsingException;
import com.urbanairship.api.common.parse.JsonObjectReader;
import com.urbanairship.api.reports.model.DeviceStats;

import java.io.IOException;

public final class DeviceStatsReader implements JsonObjectReader {

    private final DeviceStats.Builder builder;

    public DeviceStatsReader() { this.builder = DeviceStats.newBuilder(); }

    public void readDirect(JsonParser jsonParser) throws IOException {
        builder.setDirect(jsonParser.readValueAs(int.class));
    }

    public void readInfluenced(JsonParser jsonParser) throws IOException {
        builder.setInfluenced(jsonParser.readValueAs(int.class));
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy