com.urbanairship.api.reports.parse.ReportsObjectMapper 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.reports.parse;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.module.SimpleModule;
import com.urbanairship.api.push.parse.PushObjectMapper;
import com.urbanairship.api.reports.model.DeviceStats;
import com.urbanairship.api.reports.model.DeviceTypeStats;
import com.urbanairship.api.reports.model.DevicesReport;
import com.urbanairship.api.reports.model.DevicesReportResponse;
import com.urbanairship.api.reports.model.PlatformStats;
import com.urbanairship.api.reports.model.PlatformStatsResponse;
import com.urbanairship.api.reports.model.PushInfoResponse;
import com.urbanairship.api.reports.model.PushListingResponse;
import com.urbanairship.api.reports.model.ResponseReport;
import com.urbanairship.api.reports.model.ResponseReportResponse;
public class ReportsObjectMapper {
private static final ObjectMapper MAPPER = new ObjectMapper();
private static final SimpleModule MODULE = new SimpleModule("Reports API Module");
static {
MODULE.addDeserializer(DeviceStats.class, new DeviceStatsDeserializer());
MODULE.addDeserializer(DeviceTypeStats.class, new DeviceTypeStatsDeserializer());
MODULE.addDeserializer(DevicesReport.class, new DevicesReportDeserializer());
MODULE.addDeserializer(DevicesReportResponse.class, new DevicesReportResponseDeserializer());
MODULE.addDeserializer(PlatformStats.class, new PlatformStatsDeserializer());
MODULE.addDeserializer(PlatformStatsResponse.class, new PlatformStatsResponseDeserializer());
MODULE.addDeserializer(PushInfoResponse.class, new PushInfoResponseDeserializer());
MODULE.addDeserializer(PushListingResponse.class, new PushListingResponseDeserializer());
MODULE.addDeserializer(ResponseReport.class, new ResponseReportDeserializer());
MODULE.addDeserializer(ResponseReportResponse.class, new ResponseReportResponseDeserializer());
MAPPER.registerModule(MODULE);
MAPPER.registerModule(PushObjectMapper.getModule());
}
public static SimpleModule getModule() {
return MODULE;
}
public static ObjectMapper getInstance() {
return MAPPER;
}
private ReportsObjectMapper() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy