com.urbanairship.api.push.parse.notification.wns.WNSSoundDeserializer 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.push.parse.notification.wns;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import com.urbanairship.api.common.parse.APIParsingException;
import com.urbanairship.api.push.model.notification.wns.WNSAudioData;
import java.io.IOException;
public class WNSSoundDeserializer extends JsonDeserializer {
public static final WNSSoundDeserializer INSTANCE = new WNSSoundDeserializer();
@Override
public WNSAudioData.Sound deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException {
String value = jp.getText();
WNSAudioData.Sound sound = WNSAudioData.Sound.get(value);
if (sound == null) {
APIParsingException.raise("Unrecognized WNS toast sound " + value, jp);
}
return sound;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy