com.urbanairship.api.schedule.parse.ListSchedulesResponseReader 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.schedule.parse;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.type.TypeReference;
import com.urbanairship.api.common.model.ErrorDetails;
import com.urbanairship.api.common.parse.APIParsingException;
import com.urbanairship.api.common.parse.JsonObjectReader;
import com.urbanairship.api.schedule.model.ListAllSchedulesResponse;
import com.urbanairship.api.schedule.model.SchedulePayloadResponse;
import java.io.IOException;
import java.util.List;
public final class ListSchedulesResponseReader implements JsonObjectReader {
private final ListAllSchedulesResponse.Builder builder;
public ListSchedulesResponseReader() {
this.builder = ListAllSchedulesResponse.newBuilder();
}
public void readOk(JsonParser jsonParser) throws IOException {
builder.setOk(jsonParser.getBooleanValue());
}
public void readCount(JsonParser jsonParser) throws IOException {
builder.setCount(jsonParser.readValueAs(Number.class).intValue());
}
public void readTotalCount(JsonParser jsonParser) throws IOException {
builder.setTotalCount(jsonParser.readValueAs(Number.class).intValue());
}
public void readNextPage(JsonParser jsonParser) throws IOException {
builder.setNextPage(jsonParser.readValueAs(String.class));
}
public void readListScheduleResponse(JsonParser jsonParser) throws IOException {
builder.addAllSchedule(jsonParser.readValueAs(new TypeReference>() {
}));
}
public void readError(JsonParser jsonParser) throws IOException {
builder.setError(jsonParser.readValueAs(String.class));
}
public void readErrorDetails(JsonParser jsonParser) throws IOException {
builder.setErrorDetails(jsonParser.readValueAs(ErrorDetails.class));
}
@Override
public ListAllSchedulesResponse validateAndBuild() throws IOException {
try {
return builder.build();
} catch (Exception ex) {
throw new APIParsingException(ex.getMessage());
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy