com.urbanairship.api.attributelists.parse.AttributeListsViewReader 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-2022. Airship and Contributors
*/
package com.urbanairship.api.attributelists.parse;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.type.TypeReference;
import com.google.common.collect.ImmutableMap;
import com.urbanairship.api.attributelists.model.AttributeListsView;
import com.urbanairship.api.common.parse.APIParsingException;
import com.urbanairship.api.common.parse.JsonObjectReader;
import org.joda.time.DateTime;
import java.io.IOException;
import java.util.Map;
public class AttributeListsViewReader implements JsonObjectReader {
private final AttributeListsView.Builder builder;
public AttributeListsViewReader() {
this.builder = AttributeListsView.newBuilder();
}
public void readOk(JsonParser jsonParser) throws IOException {
builder.setOk(jsonParser.readValueAs(Boolean.class));
}
public void readName(JsonParser jsonParser) throws IOException {
builder.setName(jsonParser.readValueAs(String.class));
}
public void readDescription(JsonParser jsonParser) throws IOException {
builder.setDescription(jsonParser.readValueAs(String.class));
}
public void readExtras(JsonParser jsonParser) throws IOException {
Map mutableExtras = jsonParser.readValueAs(new TypeReference
© 2015 - 2024 Weber Informatics LLC | Privacy Policy